-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathSpecRunner.html
executable file
·37 lines (34 loc) · 1.03 KB
/
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
35
36
37
<!DOCTYPE html>
<html>
<head>
<title>Quiz!</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/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/excercises.js"></script>
<script src="spec/excercisesSpec.js"></script>
<script>
console.log('where we at dog?');
// Mocha expects a global onload var here and automagically executes it on pageload
onload = function(){
var runner = window.mochaPhantomJS ? mochaPhantomJS.run() : mocha.run();
runner.on('end', function() {
if(!this.failures){
console.log("Great job!!!");
}
});
};
</script>
</head>
<body>
<div id="mocha"></div>
</body>
</html>