-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtestrunner.html
More file actions
26 lines (23 loc) · 791 Bytes
/
testrunner.html
File metadata and controls
26 lines (23 loc) · 791 Bytes
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
<!DOCTYPE html>
<html>
<head>
<title>Mocha Tests</title>
<link rel="stylesheet" href="node_modules/mocha/mocha.css">
</head>
<body>
<div id="mocha"></div>
<script src="node_modules/mocha/mocha.js"></script>
<script src="node_modules/chai/chai.js"></script>
<!-- load code for testing here -->
<script type="text/javascript" src="js/timers.js"></script>
<script type="text/javascript" src="js/data.js"></script>
<script type="text/javascript" src="js/drum_dom.js"></script>
<script type="text/javascript" src="js/drum_machine.js"></script>
<!-- load test files here -->
<script type="text/javascript" src="test/test_drum_machine.js"></script>
<script type="text/javascript" src="test/test_timers.js"></script>
<script>
mocha.run();
</script>
</body>
</html>