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

47 lines
591 B
Plaintext
Raw Normal View History

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`invalid.html - html-verify 1`] = `
---
invalid:
invalid:
---
<html><head></head><body></body></html>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
---
invalid:
invalid:
---
<html>
<head></head>
<body></body>
</html>
`;
exports[`yaml.html - html-verify 1`] = `
---
hello: world
---
<html><head></head><body></body></html>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
---
hello: world
---
<html>
<head></head>
<body></body>
</html>
`;