template.html 1.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <!--
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. -->
  7. <!DOCTYPE html>
  8. <html>
  9. <head>
  10. <meta charset="utf-8" />
  11. <title>Jasmine Spec Runner</title>
  12. <link rel="shortcut icon" type="image/png" href="<%= temp %>/jasmine_favicon.png">
  13. <% css.forEach(function (style) { %>
  14. <link rel="stylesheet" href="<%= style %>">
  15. <script type="text/javascript">
  16. var require = {
  17. baseUrl: '<%= options.baseUrl %>'
  18. };
  19. </script>
  20. <% }); %>
  21. <% with (scripts) { %>
  22. <% [].concat(polyfills, jasmine, boot, vendor, src, reporters).forEach(function (script) { %>
  23. <script type="text/javascript" src="<%= script %>"></script>
  24. <% }); %>
  25. <% } %>
  26. <script type="text/javascript">
  27. var jasmineBoot = window.onload;
  28. window.onload = null;
  29. require(<%= JSON.stringify(scripts.helpers) %>, jasmineBoot);
  30. </script>
  31. </head>
  32. <body></body>
  33. </html>