forked from Shinobi881/Spec_runner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (25 loc) · 756 Bytes
/
index.html
File metadata and controls
28 lines (25 loc) · 756 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Mocha Spec Runner</title>
<link rel="stylesheet" href="lib/bower_components/mocha/mocha.css">
</head>
<body>
<div id="mocha"></div>
<script src="lib/bower_components/mocha/mocha.js"></script>
<script>mocha.setup('')</script>
<script src="lib/bower_components/chai/chai.js"></script>
<script>
var assert = chai.assert;
var expect = chai.expect;
var should = chai.should();
</script>
<!-- include source files here... -->
<script src="exercises/rawstrings.js"></script>
<!-- include spec files here... -->
<script src="spec/rawstrings.spec.js"></script>
<script>mocha.run()</script>
</body>
</html>