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

68 lines
1.8 KiB
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`empty.mjml 1`] = `
====================================options=====================================
parsers: ["html"]
printWidth: 80
| printWidth
=====================================input======================================
<mjml></mjml>
=====================================output=====================================
<mjml></mjml>
================================================================================
`;
exports[`head.mjml 1`] = `
====================================options=====================================
parsers: ["html"]
printWidth: 80
| printWidth
=====================================input======================================
<mjml>
<mj-head>
<mj-title>
The green fix eats mango.
</mj-title>
<mj-breakpoint width="600px" />
<mj-preview>Do
you like cheese? We do!</mj-preview>
<mj-attributes>
<mj-text
align="left" color="#000"
font-family="-apple-system,BlinkMacSystemFont,Helvetica,sans-serif" />
</mj-attributes>
</mj-head>
</mjml>
=====================================output=====================================
<mjml>
<mj-head>
<mj-title>
The green fix eats mango.
</mj-title>
<mj-breakpoint width="600px" />
<mj-preview>Do you like cheese? We do!</mj-preview>
<mj-attributes>
<mj-text
align="left"
color="#000"
font-family="-apple-system,BlinkMacSystemFont,Helvetica,sans-serif"
/>
</mj-attributes>
</mj-head>
</mjml>
================================================================================
`;