-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
38 lines (35 loc) · 1.05 KB
/
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
37
38
<!DOCTYPE html>
<html>
<head>
<title>Algorithms Meetup 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/jquery.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 src="lib/chai.js"></script>
<script>
// Tell mocha to use bdd-style expects
mocha.setup('bdd');
</script>
<!-- Load tests and helpers here -->
<script src="src/recommendationEngine.js"></script>
<script src="lib/spec.js"></script>
<script>
// Mocha expects a global onload var here and automagically executes it on pageload
onload = function(){
var runner = mocha.run();
runner.on('end', function() {
if(!this.failures){
// window.tweetit();
}
});
};
</script>
</head>
<body>
<div id="mocha"></div>
</body>
</html>