-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathindex.html
41 lines (33 loc) · 1.12 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Mocha Spec Runner</title>
<link rel="stylesheet" href="bower_components/mocha/mocha.css"/>
<link rel="stylesheet" href="style.css" />
</head>
<body>
<div id="mocha"></div>
<script src="bower_components/mocha/mocha.js"></script>
<script>mocha.setup('')</script>
<script src="bower_components/chai/chai.js"></script>
<script src="http://underscorejs.org/underscore.js"></script>
<script src="http://code.jquery.com/jquery-1.10.0.min.js"></script>
<script src="http://fb.me/react-0.8.0.js"></script>
<script src="http://fb.me/JSXTransformer-0.8.0.js"></script>
<script>
var assert = chai.assert;
var expect = chai.expect;
var should = chai.should();
</script>
<!-- include source files here... -->
<script src="words.js"></script>
<script src="t9.js"></script>
<script type="text/jsx" src="react.js"></script>
<!-- include spec files here... -->
<script src="spec/t9.js"></script>
<script>//mocha.run()</script>
<div id="container" class="container"> </div>
</body>
</html>