2e735b34e0
This will allow this project to be used with the [jasmine-favicon-reporter](https://github.com/simsalabim/jasmine-favicon-reporter) project as well as make the spec runner look a bit nicer.
20 lines
507 B
Cheetah
20 lines
507 B
Cheetah
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Jasmine Spec Runner</title>
|
|
<link rel="shortcut icon" type="image/png" href="<%= temp %>/jasmine_favicon.png">
|
|
<% css.forEach(function(style){ %>
|
|
<link rel="stylesheet" type="text/css" href="<%= style %>">
|
|
<% }) %>
|
|
|
|
</head>
|
|
<body>
|
|
<% with (scripts) { %>
|
|
<% [].concat(polyfills, jasmine, boot, vendor, helpers, src, specs,reporters).forEach(function(script){ %>
|
|
<script src="<%= script %>"></script>
|
|
<% }) %>
|
|
<% }; %>
|
|
</body>
|
|
</html>
|