prettier/tests/flow/recheck/tmp1e/__snapshots__/jsfmt.spec.js.snap

36 lines
811 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`e2.js 1`] = `
====================================options=====================================
parsers: ["flow"]
printWidth: 80
| printWidth
=====================================input======================================
// @flow
import type { Action } from './e1';
const f = (): Action => {
return { type: 'QUX' };
}
import { LIFE } from './e1';
(LIFE: 42);
=====================================output=====================================
// @flow
import type { Action } from "./e1";
const f = (): Action => {
return { type: "QUX" };
};
import { LIFE } from "./e1";
(LIFE: 42);
================================================================================
`;