forked from rolling-scopes-school/binary-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
test.html
34 lines (30 loc) · 756 Bytes
/
test.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Binary tree</title>
<link href="lib/mocha.css" rel="stylesheet" />
</head>
<body>
<div id="mocha"></div>
<script src="lib/jquery.min.js"></script>
<script src="lib/expect.js"></script>
<script src="lib/mocha.js"></script>
<script src="lib/chai.js"></script>
<script src="lib/sinon.min.js"></script>
<script src="lib/sinon-chai.js"></script>
<script src="./node.js"></script>
<script src="./binary-tree.js"></script>
<script>
chai.should();
window.expect = chai.expect;
</script>
<script>mocha.setup('bdd')</script>
<script src="./test.binary-tree.js"></script>
<script>
mocha.checkLeaks();
mocha.globals(['jQuery']);
mocha.run();
</script>
</body>
</html>