-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathtest.html
33 lines (28 loc) · 946 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
29
30
31
32
33
<!DOCTYPE html>
<html>
<head>
<title>Tests for Scale Workshop</title>
<meta charset="utf-8" />
<link rel="stylesheet" href="https://unpkg.com/[email protected]/mocha.css" />
</head>
<body>
<!-- mocha will render the test results here -->
<div id="mocha"></div>
<script src="https://unpkg.com/[email protected]/build-es5/index.js"></script>
<script src="https://unpkg.com/[email protected]/mocha.js"></script>
<!-- https://mochajs.org/#running-mocha-in-the-browser -->
<script class="mocha-init">
mocha.setup("bdd");
mocha.checkLeaks();
</script>
<!-- add the source files here -->
<script src="src/lib/decimal.js"></script>
<script src="src/js/constants.js"></script>
<script src="src/js/helpers.js"></script>
<!-- add the test files here -->
<script src="dev/test/helpers.spec.js"></script>
<script class="mocha-exec">
mocha.run();
</script>
</body>
</html>