grunt-contrib-jasmine/tasks/jasmine/templates/DefaultRunner.tmpl

19 lines
422 B
Cheetah
Raw Normal View History

2012-11-29 00:52:22 +08:00
<!doctype html>
<html>
<head>
2012-11-29 00:52:22 +08:00
<meta charset="utf-8">
<title>Jasmine Spec Runner</title>
2012-11-29 00:52:22 +08:00
<% css.forEach(function(style){ %>
<link rel="stylesheet" type="text/css" href="<%= style %>">
2012-11-29 00:52:22 +08:00
<% }) %>
</head>
<body>
<% with (scripts) { %>
2013-10-25 11:16:14 +08:00
<% [].concat(polyfills, jasmine, boot, vendor, helpers, src, specs,reporters).forEach(function(script){ %>
2012-11-29 00:52:22 +08:00
<script src="<%= script %>"></script>
<% }) %>
<% }; %>
</body>
</html>