forked from AlgorithmsMeetup/HuffmanCodes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSpecRunner.html
34 lines (31 loc) · 1005 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Algorithms Meetup Quadtree Test Suite [Mocha]</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link rel="stylesheet" href="lib/css/mocha.css" />
<script src="lib/underscore.js"></script>
<script src="lib/picomodal.js"></script>
<script src="lib/expect.js"></script>
<script src="lib/mocha.js"></script>
<script src="lib/sinon.js"></script>
<script>
// Tell mocha to use bdd-style expects
mocha.setup('bdd');
</script>
<!-- Load tests and helpers here -->
<script src="src/priorityQueue.js"></script>
<script src="src/misc.js"></script>
<script src="src/huffman.js"></script>
<script src="spec/spec.js"></script>
<script>
// Mocha expects a global onload var here and automagically executes it on pageload
onload = function(){
var runner = mocha.run();
};
</script>
</head>
<body>
<div id="mocha"></div>
</body>
</html>