forked from airbnb/infinity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (33 loc) · 869 Bytes
/
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
<!doctype html>
<html>
<head>
<meta charset=utf-8>
<title>Infinity Tests</title>
<link rel=stylesheet href=../node_modules/mocha/mocha.css>
</head>
<body>
<div id=mocha>
</div>
<div id=test>
</div>
<!-- Infinity & dependencies -->
<script src=https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js></script>
<script src=../infinity.js></script>
<!-- Test harness -->
<script src=../node_modules/mocha/mocha.js></script>
<script src=../node_modules/expect.js/expect.js></script>
<script>
mocha.setup({
ui: 'bdd',
ignoreLeaks: true // jQuery blows up mocha otherwise
});
</script>
<!-- Unit tests -->
<script src=listview.js></script>
<script src=listitem.js></script>
<!-- Run -->
<script>
mocha.run();
</script>
</body>
</html>