-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathAlgorithimsSpecRunner.html
More file actions
29 lines (25 loc) · 818 Bytes
/
Copy pathAlgorithimsSpecRunner.html
File metadata and controls
29 lines (25 loc) · 818 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
27
28
29
<html>
<head>
<meta charset="utf-8">
<title>Mocha Tests</title>
<link rel="stylesheet" href="./lib/mocha/mocha.css" />
<script src="./lib/jquery/jquery.js"></script>
<script src="./lib/mocha/mocha.js"></script>
<script src="./lib/chai/chai.js"></script>
<script src="./lib/underscore/underscore.js"></script>
<script>
mocha.setup('bdd');
window.expect = chai.expect;
$(function() {
window.mochaPhantomJS ? mochaPhantomJS.run() : mocha.run();
})
</script>
<!-- source files -->
<script type="text/javascript" src="algorithms/KMPSearchString.js"></script>
<!-- spec files -->
<script type="text/javascript" src="spec/algorithm-spec/KMPSearchStringSpec.js"></script>
</head>
<body>
<div id="mocha"></div>
</body>
</html>