Skip to content

Instantly share code, notes, and snippets.

@stacylondon
Last active May 3, 2016 02:22
Show Gist options
  • Save stacylondon/a46c75a38ae690b3075a600f59011d6c to your computer and use it in GitHub Desktop.
Save stacylondon/a46c75a38ae690b3075a600f59011d6c to your computer and use it in GitHub Desktop.
Jasmine Custom Templates - Runner HTML
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Jasmine Spec Runner</title>
<% css.forEach(function(style){ %>
<link rel="stylesheet" type="text/css" href="<%= style %>">
<% }) %>
<% with (scripts) { %>
<% [].concat(polyfills, jasmine, boot, vendor, src, helpers, specs, reporters).forEach(function(script){ %>
<script src="<%= script %>"></script>
<% }) %>
<% }) %>
</head>
<body>
<script src="<%= temp %>/myLibrary.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment