-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
38 lines (34 loc) · 1.07 KB
/
index.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
34
35
36
37
38
<html>
<head>
<meta charset="utf-8" />
<title>Checkpoint Coding Foundation</title>
<link
href="https://cdn.rawgit.com/mochajs/mocha/2.2.5/mocha.css"
rel="stylesheet"
/>
</head>
<body>
<main id="mocha"></main>
<script src="https://unpkg.com/[email protected]/chai.js"></script>
<script src="https://cdn.rawgit.com/jquery/jquery/2.1.4/dist/jquery.min.js"></script>
<script src="https://cdn.rawgit.com/Automattic/expect.js/0.3.1/index.js"></script>
<script src="https://cdn.rawgit.com/mochajs/mocha/2.2.5/mocha.js"></script>
<script>
mocha.setup("bdd");
</script>
<!-- Filter API Data -->
<script src="filter-api-data.js"></script>
<script src="filter-api-data.test.js"></script>
<!-- Sum App -->
<script src="sum-app.js"></script>
<script src="sum-app.test.js"></script>
<!-- Zip Strings -->
<script src="zip-strings.js"></script>
<script src="zip-strings.test.js"></script>
<script>
mocha.checkLeaks();
mocha.globals(["jQuery"]);
mocha.run();
</script>
</body>
</html>