| 693 |
steven |
1 |
<!doctype html>
|
|
|
2 |
<html>
|
|
|
3 |
<head>
|
|
|
4 |
<meta charset="utf-8">
|
|
|
5 |
<meta name='viewport' content='width=device-width,initial-scale=1.0'>
|
|
|
6 |
<title>Tests</title>
|
|
|
7 |
<link rel='stylesheet' href='../vendor/mocha.css'>
|
|
|
8 |
<link rel='stylesheet' href='../build/build.css'>
|
|
|
9 |
<script src='../build/build.js'></script>
|
|
|
10 |
|
|
|
11 |
<!-- mocha -->
|
|
|
12 |
<script src='../vendor/mocha.js'></script>
|
|
|
13 |
<script>mocha.ignoreLeaks(); mocha.setup('bdd');</script>
|
|
|
14 |
<script src='../vendor/chai.js'></script>
|
|
|
15 |
<script>should = chai.should()</script>
|
|
|
16 |
<script>assert = chai.assert</script>
|
|
|
17 |
<script>testSuite = describe;</script>
|
|
|
18 |
|
|
|
19 |
<!-- tests -->
|
|
|
20 |
<script src="test.js"></script>
|
|
|
21 |
<script>onload = function() { mocha.run(); }</script>
|
|
|
22 |
</head>
|
|
|
23 |
<body>
|
|
|
24 |
<div id="mocha"></div>
|
|
|
25 |
</body>
|
|
|
26 |
</html>
|