-
-
Notifications
You must be signed in to change notification settings - Fork 255
/
index.html
36 lines (33 loc) · 1.15 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
<!doctype html>
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="https://unpkg.com/jasmine-core@3/lib/jasmine-core/jasmine.css" />
<script src="https://unpkg.com/jasmine-core@3/lib/jasmine-core/jasmine.js"></script>
<script src="https://unpkg.com/jasmine-core@3/lib/jasmine-core/jasmine-html.js"></script>
<script src="https://unpkg.com/jasmine-core@3/lib/jasmine-core/boot0.js"></script>
<script src="https://unpkg.com/jasmine-core@3/lib/jasmine-core/boot1.js"></script>
<script src="../dist/rot.js"></script>
<script src="spec/color.js"></script>
<script src="spec/display.js"></script>
<script src="spec/dungeon.js"></script>
<script src="spec/engine.js"></script>
<script src="spec/eventqueue.js"></script>
<script src="spec/fov.js"></script>
<script src="spec/path.js"></script>
<script src="spec/rng.js"></script>
<script src="spec/scheduler.js"></script>
<script src="spec/text.js"></script>
<script src="spec/util.js"></script>
<script>
var reporter = {
specDone: console.log,
suiteDone: console.log,
jasmineDone: console.log
}
jasmine.getEnv().addReporter(reporter);
</script>
</head>
<body>
</body>
</html>