-
Notifications
You must be signed in to change notification settings - Fork 7
/
SpecRunner.html
49 lines (45 loc) · 2.12 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
43
44
45
46
47
48
49
<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.17.3.js"></script>
<script src="node_modules/sinon/pkg/sinon-1.17.3.js"></script>
<script>
mocha.setup('bdd');
var expect = chai.expect;
$(function() {
window.mochaPhantomJS ? mochaPhantomJS.run() : mocha.run()
});
</script>
<!-- include source files here... -->
<script src="compiled/src/config/youtube.js"></script>
<script src="compiled/src/lib/searchYouTube.js"></script>
<script src="compiled/src/data/exampleVideoData.js"></script>
<script src="compiled/src/components/VideoListEntry.js"></script>
<script src="compiled/src/components/VideoList.js"></script>
<script src="compiled/src/components/VideoPlayer.js"></script>
<script src="compiled/src/components/Nav.js"></script>
<script src="compiled/src/components/Search.js"></script>
<script src="compiled/src/components/App.js"></script>
<!-- include spec files here... -->
<script src="compiled/spec/data/fakeVideoData.js"></script>
<script src="compiled/spec/data/moreFakeVideoData.js"></script>
<script src="compiled/spec/components/Wrapper.js"></script>
<script src="compiled/spec/components/VideoListSpec.js"></script>
<script src="compiled/spec/components/VideoListEntrySpec.js"></script>
<script src="compiled/spec/components/VideoPlayerSpec.js"></script>
<script src="compiled/spec/components/AppSpec.js"></script>
<script src="compiled/spec/lib/searchYouTubeSpec.js"></script>
<script src="compiled/spec/components/SearchSpec.js"></script>
</head>
<body>
<div id="mocha"></div>
</body>
</html>