forked from ludo/jquery-treetable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
28 lines (25 loc) · 839 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>jQuery treetable Tests</title>
<link rel="stylesheet" href="bower_components/mocha/mocha.css" />
<script src="bower_components/jquery/dist/jquery.js"></script>
<script src="bower_components/underscore/underscore.js"></script>
<script src="bower_components/mocha/mocha.js"></script>
<script src="bower_components/sinonjs/sinon.js"></script>
<script src="bower_components/chai/chai.js"></script>
<script src="bower_components/chai-jquery/chai-jquery.js"></script>
<script>
mocha.setup('bdd');
$(function () {
mocha.run();
});
</script>
<script src="jquery.treetable.js"></script>
<script src="test/jquery.treetable.test.js"></script>
</head>
<body>
<div id="mocha"></div>
</body>
</html>