forked from gitana/alpaca
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tests.mustache
35 lines (31 loc) · 887 Bytes
/
tests.mustache
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
35
<!doctype html>
<html>
<head>
<title>Test'em</title>
<script>
// polyfill for ie8
if (!Array.prototype.indexOf) {
Array.prototype.indexOf = function(obj, start) {
for (var i = (start || 0), j = this.length; i < j; i++) {
if (this[i] === obj) { return i; }
}
return -1;
};
}
</script>
<script src="/testem/qunit.js"></script>
<script src="/testem.js"></script>
{{#serve_files}}
<script src="{{src}}"></script>
{{/serve_files}}
<link rel="stylesheet" href="/testem/qunit.css"/>
</head>
<body>
<h1 id="qunit-header">Tests</h1>
<h2 id="qunit-banner"></h2>
<div id="qunit-testrunner-toolbar"></div>
<h2 id="qunit-userAgent"></h2>
<ol id="qunit-tests"></ol>
<div id="qunit-fixture"></div>
</body>
</html>