jsfmt.spec.js.snap 461 B

1234567891011121314151617181920212223242526272829303132333435
  1. // Jest Snapshot v1, https://goo.gl/fbAQLP
  2. exports[`html-with-js-script.html 1`] = `
  3. <!DOCTYPE html>
  4. <html lang="en">
  5. <head>
  6. <script type="text/javascript">
  7. hello( 'world'
  8. )
  9. </script>
  10. </head>
  11. <body></body>
  12. </html>
  13. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
  14. <!DOCTYPE html>
  15. <html lang="en">
  16. <head>
  17. <script type="text/javascript">
  18. hello("world");
  19. </script>
  20. </head>
  21. <body>
  22. </body>
  23. </html>
  24. `;