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

18 lines
661 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`test.js 1`] = `
====================================options=====================================
parsers: ["flow", "babylon", "typescript"]
printWidth: 80
| printWidth
=====================================input======================================
import("module.js");
import("module.js").then((a) => a);
=====================================output=====================================
import("module.js");
import("module.js").then(a => a);
================================================================================
`;