-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathSpecRunner.html
More file actions
31 lines (28 loc) · 846 Bytes
/
SpecRunner.html
File metadata and controls
31 lines (28 loc) · 846 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
30
31
<!DOCTYPE html>
<html>
<head>
<title>Underscore 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/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/underbar.js"></script>
<script src="spec/underbarSpec.js"></script>
<script>
// Mocha expects a global onload var here and automagically executes it on pageload
onload = function(){
mocha.run();
};
</script>
</head>
<body>
<div id="mocha"></div>
</body>
</html>