-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSpecRunner.html
31 lines (28 loc) · 1.02 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
<html>
<head>
<meta charset="utf-8">
<title>Mocha Tests</title>
<link rel="stylesheet" href="node_modules/mocha/mocha.css" />
<script src="node_modules/jquery/dist/jquery.js"></script>
<script src="node_modules/react/dist/react-with-addons.js"></script>
<script src="node_modules/react-dom/dist/react-dom.js"></script>
<script src="node_modules/lodash/lodash.js"></script>
<script src="node_modules/mocha/mocha.js"></script>
<script src="node_modules/chai/chai.js"></script>
<script src="node_modules/sinon/pkg/sinon-server-1.15.4.js"></script>
<script src="node_modules/sinon/pkg/sinon-1.15.4.js"></script>
<script>
mocha.setup('bdd');
var expect = chai.expect;
$(function() {
window.mochaPhantomJS ? mochaPhantomJS.run() : mocha.run();
});
</script>
<!-- include spec files here... -->
</head>
<body>
<div id='shadow-app' style='display: none;'></div>
<div id="mocha"></div>
<script src="dist/spec.bundle.js"></script>
</body>
</html>