-
Notifications
You must be signed in to change notification settings - Fork 43
Expand file tree
/
Copy pathrun_tests.html
More file actions
27 lines (25 loc) · 794 Bytes
/
run_tests.html
File metadata and controls
27 lines (25 loc) · 794 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Tests for Agile Eng Fluency</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://unpkg.com/mocha/mocha.css" />
</head>
<body>
<div id="mocha"></div>
<script src="https://unpkg.com/chai/chai.js"></script>
<script src="https://unpkg.com/mocha/mocha.js"></script>
<script class="mocha-init">
mocha.setup('bdd');
const expect = chai.expect;
</script>
<script src="stages_data.js"></script>
<script src="./static/js/layout.js"></script>
<script src="./static/js/layout.test.js"></script>
<script class="mocha-exec">
mocha.checkLeaks();
mocha.run();
</script>
</body>
</html>