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

11 lines
266 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`test.js 1`] = `
import("module.js");
import("module.js").then((a) => a);
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
import("module.js");
import("module.js").then(a => a);
`;