-
Notifications
You must be signed in to change notification settings - Fork 0
/
SpecRunner.html
30 lines (30 loc) · 944 Bytes
/
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
<!doctype html>
<meta charset="utf8">
<html>
<head>
<title>Self Assessment Debugger</title>
<meta name="description" content="Self Assessment Debugger">
<link rel="stylesheet" href="./lib/mocha/mocha.css">
<!-- add plugins you need -->
<script src="./lib/jquery/jquery.js"></script>
<script src="./lib/chai/chai.js"></script>
<script src="./lib/mocha/mocha.js"></script>
<script src="./lib/require/require.js"></script>
<script src="./lib/underscore/underscore.js"></script>
<!-- set up mocha -->
<script>
mocha.setup('bdd');
window.expect = chai.expect;
$(function() {
window.mochaPhantomJS ? mochaPhantomJS.run() : mocha.run();
})
</script>
<!-- make sure src is what you need -->
<script src="./src/this.js"></script>
<!-- spec file -->
<script src="./src/thisSpec.js"></script>
</head>
<body>
<div id="mocha"></div>
</body>
</html>