-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSpecRunner.html
More file actions
22 lines (21 loc) · 800 Bytes
/
SpecRunner.html
File metadata and controls
22 lines (21 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!doctype html>
<html>
<head>
<title>Jasmine Spec Runner</title>
<link rel="shortcut icon" type="image/png" href="lib/jasmine-3.3.0/jasmine_favicon.png">
<link rel="stylesheet" href="lib/jasmine-3.3.0/jasmine.css">
</head>
<body>
<script src="lib/jasmine-3.3.0/jasmine.js"></script>
<script src="lib/jasmine-3.3.0/jasmine-html.js"></script>
<script src="lib/jasmine-3.3.0/boot.js"></script>
<!-- include source files here... -->
<script src="./src/player.js"></script>
<script src="./src/game.js"></script>
<script src="./src/status.js"></script>
<!-- include spec files here... -->
<script src="./test/player_spec.js"></script>
<script src="./test/game_spec.js"></script>
<script src="./test/status_spec.js"></script>
</body>
</html>