prettier/tests/export_extension/__snapshots__/jsfmt.spec.js.snap

24 lines
811 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`export.js 1`] = `
====================================options=====================================
parsers: ["babel"]
printWidth: 80
| printWidth
=====================================input======================================
export * as ns from 'mod';
export v from 'mod';
export a, * as b from 'mod';
export c, { foo } from 'mod';
export * as d, { bar } from 'mod';
=====================================output=====================================
export * as ns from "mod";
export v from "mod";
export a, * as b from "mod";
export c, { foo } from "mod";
export * as d, { bar } from "mod";
================================================================================
`;