prettier/tests/require-pragma/json5/__snapshots__/jsfmt.spec.js.snap

36 lines
1.2 KiB
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`with-pragma.json5 1`] = `
====================================options=====================================
parsers: ["json5"]
printWidth: 80
requirePragma: true
| printWidth
=====================================input======================================
/** @format */
{hello: "world"}
=====================================output=====================================
/** @format */
{ hello: "world" }
================================================================================
`;
exports[`without-pragma.json5 1`] = `
====================================options=====================================
parsers: ["json5"]
printWidth: 80
requirePragma: true
| printWidth
=====================================input======================================
{hello: "world"}
=====================================output=====================================
{hello: "world"}
================================================================================
`;