-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest.html
More file actions
31 lines (27 loc) · 781 Bytes
/
test.html
File metadata and controls
31 lines (27 loc) · 781 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
26
27
28
29
30
31
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Tests</title>
<link href="node_modules/mocha/mocha.css" rel="stylesheet" />
<script src="node_modules/mocha/mocha.js"></script>
<script src="node_modules/chai/chai.js"></script>
</head>
<body>
<!-- A container element for the visual Mocha results -->
<div id="mocha"></div>
<!-- Mocha setup and initiation code -->
<script>
const expect = chai.expect;
mocha.setup('bdd');
window.onload = function() {
mocha.run();
};
</script>
<!-- The script under test -->
<script src="test/web/three.min.js"></script>
<script src="build/rl-loadout-lib.js"></script>
<script src="test/web/utils/network.spec.js"></script>
<script src="test/web/utils/bakkes/loadout.spec.js"></script>
</body>
</html>