-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest.html
More file actions
31 lines (24 loc) · 1014 Bytes
/
test.html
File metadata and controls
31 lines (24 loc) · 1014 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
28
29
30
<!doctype html>
<html lang="en">
<head>
<title>QUnit Tests</title>
<link rel="stylesheet" type="text/css" href="vendor/qunit/qunit.css">
<link rel="shortcut icon" type="image/png" href="http://qunitjs.com/favicon.ico" />
</head>
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<script src="javascript/class.js"></script>
<script src="javascript/util.js"></script>
<script src="javascript/htmlview.js"></script>
<script src="javascript/keyboardInput.js"></script>
<script src="javascript/gameobject.js"></script>
<script src="javascript/game.js"></script>
<script src="javascript/items.js"></script>
<script src="javascript/creatures.js"></script>
<script src="javascript/gamemap.js"></script>
<script src="javascript/main.js"></script>
<script src="vendor/qunit/qunit.js"></script>
<script src="javascript/tests.js"></script>
</body>
</html>