forked from kupriyanenko/jbone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tests.html
31 lines (31 loc) · 880 Bytes
/
tests.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
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Tests jBone</title>
<link rel="stylesheet" href="../bower_components/mocha/mocha.css" />
</head>
<body>
<div id="mocha"></div>
<div id="app"></div>
<script src="../build/phantom-shim.js"></script>
<script src="../dist/jbone.js"></script>
<script src="../bower_components/mocha/mocha.js"></script>
<script src="../bower_components/expect/expect.js"></script>
<script>
mocha.setup({
ui: 'bdd'
});
</script>
<script src="core.js"></script>
<script src="event.js"></script>
<script src="attributes.js"></script>
<script src="manipulation.js"></script>
<script src="traversing.js"></script>
<script src="utilities.js"></script>
<script>
mocha.checkLeaks();
mocha.run();
</script>
</body>
</html>