-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathtest.html
More file actions
39 lines (33 loc) · 1.04 KB
/
test.html
File metadata and controls
39 lines (33 loc) · 1.04 KB
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
<html>
<head>
<meta charset="utf-8">
<title>Testing</title>
<link href="node_modules/mocha/mocha.css" rel="stylesheet"/>
</head>
<body>
<div id="graph"></div>
<div id="mocha"></div>
</body>
<script src="node_modules/jquery/dist/jquery.js"></script>
<script src="node_modules/mocha/mocha.js"></script>
<script>
mocha.setup('bdd')
mocha.globals(['Module']);
</script>
<script src="./test/updateResult.js"></script>
<script src="./test/SyncLocalStorage.js"></script>
<script src="./test/Path/AsyncLocalStorage.js"></script>
<script src="./test/SyncIt.js"></script>
<script src="./test/AsyncLocalStorage.js"></script>
<script src="./test/dontListLocallyDeletedDatakeys.js"></script>
<!--
uncomment to enable visualization of internal data
<script type="text/javascript" src="http://mdaines.github.io/viz.js/viz.js"></script>
-->
<script>
$(document).ready(function() {
mocha.run();
});
</script>
<p>to run tests in a web page install beefy and run "beefy test/*.js test/Path/*.js"</p>
</html>