-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
21 lines (21 loc) · 726 Bytes
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
<title>Mocha</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="node_modules/mocha/mocha.css" />
</head>
<body>
<main id="main">
</main>
<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="index.js"></script>
<script src="test/index-test.js"></script>
</body>
</html>