-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
36 lines (30 loc) · 953 Bytes
/
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Mocha</title>
<link rel="stylesheet" href="lib/mocha.css">
</head>
<body>
<div id="mocha"></div>
<script src="lib/mocha.js"></script>
<script>mocha.setup('tdd')</script>
<script src="lib/chai.js"></script>
<script>assert = chai.assert</script>
<!--<script>mocha.setup('bdd')</script>-->
<!--<script src="Array.js"></script>-->
<!--<script src="fruit.js"></script>
<script src="fruitTest.js"></script>-->
<!-- Example #2 -->
<script src="person.js"></script>
<script src="personTest.js"></script>
<!--<script src="calculatorTest.js"></script>-->
<script>
mocha.run();
</script>
<script>
<!-- Live Reload -->
document.write('<script src="http://' + (location.host || 'localhost').split(':')[0] + ':35729/livereload.js?snipver=1"></' + 'script>');
</script>
</body>
</html>