-
Notifications
You must be signed in to change notification settings - Fork 4
/
index.html
42 lines (37 loc) · 1.25 KB
/
index.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>
<title>backbone.handlebars tests</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="libs/mocha.css" />
</head>
<body>
<div id="mocha"></div>
<script src="../examples/js/libs/jquery.min.js"></script>
<script src="../examples/js/libs/underscore.min.js"></script>
<script src="../examples/js/libs/backbone.js"></script>
<script src="../examples/js/libs/handlebars.js"></script>
<script src="../src/ext.js"></script>
<script src="../src/helpers/each.js"></script>
<script src="../src/helpers/view.js"></script>
<script src="../src/view.js"></script>
<script src="libs/chai.js"></script>
<script src="libs/mocha.js"></script>
<script>
mocha.setup('bdd')
var should = chai.should();
</script>
<script src="../node_modules/grunt-mocha/tasks/mocha/mocha-helper.js"></script>
<script src="ext.js"></script>
<script src="helpers/each.js"></script>
<script src="helpers/view.js"></script>
<script src="nested.js"></script>
<script src="view.js"></script>
<script>
if (window.mochaPhantomJS) {
mochaPhantomJS.run();
} else {
mocha.run();
}
</script>
</body>
</html>