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

62 lines
1.4 KiB
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`semi.md 1`] = `
====================================options=====================================
parsers: ["markdown"]
printWidth: 80
proseWrap: "always"
semi: true
| printWidth
=====================================input======================================
\`\`\`jsx
<div>foo</div>
\`\`\`
\`\`\`jsx
const a = 1;
<div>foo</div>;
\`\`\`
=====================================output=====================================
\`\`\`jsx
<div>foo</div>
\`\`\`
\`\`\`jsx
const a = 1;
<div>foo</div>;
\`\`\`
================================================================================
`;
exports[`semi.md 2`] = `
====================================options=====================================
parsers: ["markdown"]
printWidth: 80
proseWrap: "always"
semi: false
| printWidth
=====================================input======================================
\`\`\`jsx
<div>foo</div>
\`\`\`
\`\`\`jsx
const a = 1;
<div>foo</div>;
\`\`\`
=====================================output=====================================
\`\`\`jsx
<div>foo</div>
\`\`\`
\`\`\`jsx
const a = 1
;<div>foo</div>
\`\`\`
================================================================================
`;