-
Notifications
You must be signed in to change notification settings - Fork 0
/
SpecRunner.html
42 lines (36 loc) · 1.32 KB
/
SpecRunner.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
38
39
40
41
42
<html>
<head>
<meta charset="utf-8">
<title>Mocha Tests</title>
<link rel="stylesheet" href="lib/mocha/mocha.css" />
<script src="lib/jquery.js"></script>
<script src="lib/underscore.js"></script>
<script src="lib/backbone.js"></script>
<script src="lib/mocha/mocha.js"></script>
<script src="lib/chai/chai.js"></script>
<script>
mocha.setup('bdd');
$(function() {
window.mochaPhantomJS ? mochaPhantomJS.run() : mocha.run();
})
</script>
<!-- include source files here... -->
<script src="compiled/client/models/Card.js"></script>
<script src="compiled/client/collections/Hand.js"></script>
<script src="compiled/client/collections/Deck.js"></script>
<script src="compiled/client/models/App.js"></script>
<script src="compiled/client/views/CardView.js"></script>
<script src="compiled/client/views/HandView.js"></script>
<script src="compiled/client/views/AppView.js"></script>
<!-- include spec files here... -->
<script src="compiled/spec/CardSpec.js"></script>
<script src="compiled/spec/DeckSpec.js"></script>
<script src="compiled/spec/BlackjackViewSpec.js"></script>
<!-- // <script src="compiled/spec/main.js"></script> -->
<script>
</script>
</head>
<body>
<div id="mocha"></div>
</body>
</html>