forked from alex-aaron/scratch-pad.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
69 lines (59 loc) · 2.4 KB
/
Copy pathindex.html
File metadata and controls
69 lines (59 loc) · 2.4 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<title>Mocha Spec Runner</title>
<link
rel="stylesheet"
href="https://cdn.jsdelivr.net/gh/OperationSpark/mocha-style@main/mocha.css"
/>
<script
src="https://cdn.jsdelivr.net/gh/OperationSpark/mocha-style@main/injectStyles.js"
runMocha
></script>
<script src="node_modules/mocha/mocha.js"></script>
<script src="node_modules/chai/chai.js"></script>
<script src="node_modules/lodash/lodash.js"></script>
<script src="node_modules/sinon/pkg/sinon.js"></script>
</head>
<body>
<div id="mocha"></div>
<script>
mocha.setup('bdd');
</script>
<!-- <script src="https://cdnjs.cloudflare.com/ajax/libs/mocha/11.1.0/mocha.min.js"></script>
<script>mocha.setup('')</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/chai/4.5.0/chai.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/lodash.js/4.17.21/lodash.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/sinon.js/19.0.2/sinon.min.js"></script> -->
<script>
var assert = chai.assert;
var expect = chai.expect;
var should = chai.should();
</script>
<!-- include source files here... -->
<script src="day-1/my-first-test.js"></script>
<script src="day-1/stringy.js"></script>
<script src="day-1/homework/reverse-string.js"></script>
<script src="day-2/greeter-app.js"></script>
<script src="day-2/loops.js"></script>
<script src="day-2/homework/fizz-buzz.js"></script>
<script src="day-3/type.js"></script>
<script src="day-3/first-class-functions.js"></script>
<script src="day-3/homework/range.js"></script>
<script src="day-4/contact-list.js"></script>
<!-- include spec files here... -->
<script src="spec/my-first-test.spec.js"></script>
<script src="spec/stringy.spec.js"></script>
<script src="spec/reverse-string.spec.js"></script>
<script src="spec/greeter-app.spec.js"></script>
<script src="spec/loops.spec.js"></script>
<script src="spec/fizz-buzz.spec.js"></script>
<script src="spec/type.spec.js"></script>
<script src="spec/first-class-functions.spec.js"></script>
<script src="spec/range.spec.js"></script>
<script src="spec/contact-list.spec.js"></script>
<!-- <script>mocha.run()</script> -->
</body>
</html>