-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest.html
More file actions
61 lines (46 loc) · 2.15 KB
/
test.html
File metadata and controls
61 lines (46 loc) · 2.15 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Friebyrd Spec Runner</title>
<link rel="shortcut icon" type="image/png" href="spec/lib/jasmine-1.3.1/jasmine_favicon.png">
<link rel="stylesheet" type="text/css" href="spec/lib/jasmine-1.3.1/jasmine.css">
<script type="text/javascript" src="node_modules/jasmine-node/lib/jasmine-node/jasmine-1.3.1.js"></script>
<!-- include source files here... -->
<script type="text/javascript" src="https://raw.github.com/documentcloud/underscore/master/underscore-min.js"></script>
<script type="text/javascript" src="https://raw.github.com/documentcloud/underscore-contrib/master/underscore.util.existential.js"></script>
<script type="text/javascript" src="https://raw.github.com/documentcloud/underscore-contrib/master/underscore.function.combinators.js"></script>
<script type="text/javascript" src="https://raw.github.com/documentcloud/underscore-contrib/master/underscore.array.builders.js"></script>
<script type="text/javascript" src="https://raw.github.com/documentcloud/underscore-contrib/master/underscore.object.builders.js"></script>
<script type="text/javascript" src="https://raw.github.com/documentcloud/underscore-contrib/master/underscore.object.selectors.js"></script>
<script type="text/javascript" src="vendor/friebyrd.js"></script>
<!-- include spec files here... -->
<script type="text/javascript" src="vendor/friebyrd.spec.js"></script>
<script type="text/javascript">
(function() {
var jasmineEnv = jasmine.getEnv();
jasmineEnv.updateInterval = 1000;
var htmlReporter = new jasmine.HtmlReporter();
jasmineEnv.addReporter(htmlReporter);
jasmineEnv.specFilter = function(spec) {
return htmlReporter.specFilter(spec);
};
var currentWindowOnload = window.onload;
window.onload = function() {
if (currentWindowOnload) {
currentWindowOnload();
}
execJasmine();
};
function execJasmine() {
jasmineEnv.execute();
}
})();
</script>
</head>
<body>
<center>
W00t°
</center>
</body>
</html>