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

32 lines
458 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`html-with-js-script.html 1`] = `
<!DOCTYPE html>
<html lang="en">
<head>
<script type="text/javascript">
hello( 'world'
)
</script>
</head>
<body></body>
</html>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
<!DOCTYPE html>
<html lang="en">
<head>
<script type="text/javascript">
hello("world");
</script>
</head>
<body>
</body>
</html>
`;