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

56 lines
1.3 KiB
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`script.html 1`] = `
====================================options=====================================
parsers: ["html"]
printWidth: 80
| printWidth
=====================================input======================================
<script type="application/ld+json">
{ "json": true }
</script>
<script type="application/json">
{ "json":true }
</script>
<script type="importmap">
{ "json":true }
</script>
<script type="systemjs-importmap">
{ "json":true }
</script><script type="invalid">
{ "json":false }
</script>
<script
async=""
id=""
src="/_next/static/development/pages/_app.js?ts=1565732195968"
></script><script></script>
=====================================output=====================================
<script type="application/ld+json">
{ "json": true }
</script>
<script type="application/json">
{ "json": true }
</script>
<script type="importmap">
{ "json": true }
</script>
<script type="systemjs-importmap">
{ "json": true }
</script>
<script type="invalid">
{ "json":false }
</script>
<script
async=""
id=""
src="/_next/static/development/pages/_app.js?ts=1565732195968"
></script>
<script></script>
================================================================================
`;