-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
32 lines (31 loc) · 927 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
<html>
<head>
<title>Unit testing</title>
<meta charset="utf-8"/>
<style type="text/css">
#report,
#coverageReport {
min-height: 500px;
width: 100%;
}
#exception {
border: 1px solid red;
margin: 1em;
padding: 1em;
}
</style>
</head>
<body>
<!-- Load Mocha, Chai, Sinon -->
<div id="mocha"></div>
<link rel="stylesheet" href="node_modules/mocha/mocha.css"/>
<script src="node_modules/mocha/mocha.js"></script>
<script src="node_modules/chai/chai.js"></script>
<script src="node_modules/sinon/pkg/sinon.js"></script>
<!-- Load and run testing -->
<script src="~setup.js"></script>
<script id="testing-init">
testing.run();
</script>
</body>
</html>