-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
26 lines (25 loc) · 905 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
24
25
26
<!doctype html>
<html>
<head>
<title>cromp</title>
<style type="text/css" media="screen">
html, body { font-family: Helvetica, arial, sans-serif; }
</style>
<link rel="stylesheet" href="node_modules/mocha/mocha.css" type="text/css" media="screen" />
</head>
<body>
<h1>cromp</h1>
<div id="mocha"></div>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="node_modules/mocha/mocha.js"></script>
<script type="text/javascript" src="node_modules/chai/chai.js"></script>
<script type="text/javascript" src="cromp.js"></script>
<script type="text/javascript">
mocha.setup('tdd');
</script>
<script type="text/javascript" src="test/cromp.tests.js"></script>
<script type="text/javascript">
mocha.run();
</script>
</body>
</html>