-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
23 lines (21 loc) · 744 Bytes
/
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
<!DOCTYPE html>
<html>
<head>
<title>Rock Dodger!</title>
<link rel="stylesheet" type="text/css" href="node_modules/mocha/mocha.css">
<link rel="stylesheet" type="text/css" href="index.css">
</head>
<body>
<div id="game">
<a id="start" href="javascript:start()">START</a>
<div id="dodger" style="bottom: 0px; left: 180px;"></div>
</div>
<script src="index.js"></script>
<!-- Open this file and call `mocha.run()` in console to run tests -->
<div id="mocha"></div>
<script src="node_modules/mocha/mocha.js"></script>
<script src="node_modules/expect/umd/expect.min.js"></script>
<script>mocha.setup('bdd');</script>
<script src="test/index-test.js"></script>
</body>
</html>