-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathindex.html
53 lines (40 loc) · 1.39 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!doctype html>
<!--[if lt IE 7]><html class="no-js lt-ie9 lt-ie8 lt-ie7" lang=en><![endif]-->
<!--[if IE 7]><html class="no-js lt-ie9 lt-ie8" lang=en><![endif]-->
<!--[if IE 8]><html class="no-js lt-ie9" lang=en><![endif]-->
<!--[if gt IE 8]><!--> <html class=no-js lang=en> <!--<![endif]-->
<head>
<meta charset=utf-8>
<meta http-equiv=X-UA-Compatible content="IE=edge,chrome=1">
<title>Tree traversal library</title>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.0/jquery.min.js"></script>
<link rel=stylesheet href='node_modules/mocha/mocha.css'>
<script src='node_modules/mocha/mocha.js'></script>
<script src='node_modules/chai/chai.js'></script>
<script>window.module = {exports: {}}</script>
<script src='test/fixtures.js'></script>
<script>
window.fixtures = module.exports;
delete window.module;
</script>
<script>
function define(name, callback) { window[name] = callback(); };
function require(name) {
if (/chai/.test(name))
return chai;
else if (/fixtures/.test(name))
return window.fixtures;
else if (/t$/.test(name))
return window.t;
};
define.amd = true;
</script>
<script src='t.js'></script>
<script>mocha.setup('bdd');</script>
<script src='test/test.js'></script>
<script>onload = function() { mocha.run(); };</script>
</head>
<body>
<div id=mocha></div>
</body>
</html>