-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
33 lines (30 loc) · 1.02 KB
/
test.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
<html lang="en">
<head>
<meta charset="utf-8" />
<title>Mocha Tests</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="https://unpkg.com/mocha/mocha.css" />
<link rel="stylesheet" href="snake.css">
</head>
<body>
<div id="mocha"></div>
<script src="https://unpkg.com/chai/chai.js"></script>
<script src="https://unpkg.com/mocha/mocha.js"></script>
<input id='size' placeholder="enter size (default 10)"/>
<input id='speed' placeholder="enter speed (default 10)"/>
Play auto:<input type="checkbox" id='isPlayAuto'/>
<button onclick="startGame()" id="startBtn">Start</button>
<span id='score'></span>
<br>
<canvas id="board" width="600" height="600"></canvas>
<script src="snake.js"></script>
<script class="mocha-init">
mocha.setup('bdd');
mocha.checkLeaks();
</script>
<script src="test.js"></script>
<script class="mocha-exec">
mocha.run();
</script>
</body>
</html>