1234567891011121314151617181920212223242526272829303132333435 |
- // 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>
- `;
|