-
Notifications
You must be signed in to change notification settings - Fork 112
/
Copy pathtestlingSpecRunner.html
37 lines (34 loc) · 1.05 KB
/
testlingSpecRunner.html
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
<html>
<head>
<meta charset="utf-8">
<title>Mocha Tests</title>
<link rel="stylesheet" href="node_modules/mocha/mocha.css" />
</head>
<body>
<div id="mocha"></div>
<script src="node_modules/expect.js/index.js"></script>
<script src="node_modules/mocha/mocha.js"></script>
<script src="spec/assert.js"></script>
<script>mocha.setup('bdd')</script>
<script src="spec/lib/jquery-1.9.1.min.js"></script>
<script src="dist/transparency.js"></script>
<script src="spec/basicsSpec.js"></script>
<script src="spec/cachedTemplatesSpec.js"></script>
<script src="spec/configSpec.js"></script>
<script src="spec/directivesSpec.js"></script>
<script src="spec/formsSpec.js"></script>
<script src="spec/listsSpec.js"></script>
<script src="spec/modelReferencesSpec.js"></script>
<script src="spec/nestedModelsSpec.js"></script>
<script>
mocha.reporter('tap');
mocha.checkLeaks();
mocha.globals(['jQuery']);
if (window.mochaPhantomJS) {
mochaPhantomJS.run();
} else {
mocha.run();
}
</script>
</body>
</html>