forked from handsontable/handsontable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSpecRunner.tmpl
34 lines (29 loc) · 1017 Bytes
/
SpecRunner.tmpl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=EDGE" />
<meta charset="utf-8">
<meta http-equiv="cache-control" content="no-cache" />
<meta http-equiv="expires" content="0" />
<title>Jasmine Spec Runner</title>
<link rel="stylesheet" type="text/css" href="lib/jasmine/jasmine.css">
<% css.forEach(function(style) {
if (style.search(/jasmine.css$/) == -1) { %>
<link rel="stylesheet" type="text/css" href="<%= style %>">
<% } %>
<% }) %>
<script src="lib/jasmine/phantom-polyfill.js"></script>
<script src="lib/jasmine/jasmine.js"></script>
<script src="lib/jasmine/jasmine-html.js"></script>
<% with (scripts) { %>
<% [].concat(vendor, helpers, src, specs).forEach(function(script) { %>
<script src="<%= script %>"></script>
<% }) %>
<% } %>
<script src="lib/jasmine/reporter.js"></script>
<script src="lib/jquery.simulate.js"></script>
<script src="lib/jasmine/jasmine-helper.js"></script>
</head>
<body>
</body>
</html>