-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
25 lines (25 loc) · 922 Bytes
/
index.html
File metadata and controls
25 lines (25 loc) · 922 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="../node_modules/mocha/mocha.css"/>
</head>
<body>
<div id="mocha"></div>
<script
src="https://code.jquery.com/jquery-3.2.1.min.js"
integrity="sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin="anonymous"></script>
<script src="../node_modules/mocha/mocha.js"></script>
<script src="../node_modules/chai/chai.js"></script>
<script>
mocha.setup('bdd');
</script>
<script src="../node_modules/ul4/ul4.min.js"></script>
<script src="../src/modules/livingapi.js"></script>
<script src="../src/livingSDK.js"></script>
<script src="../test/config.js"></script>
<script src="../test/node_test.js"></script>
<script>mocha.run()</script>
</body>
</html>