-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
33 lines (28 loc) · 970 Bytes
/
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
33
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Mocha Test Runner</title>
<link rel="stylesheet" href="./node_modules/mocha/mocha.css">
</head>
<body>
<div id="mocha"></div>
<script src="./node_modules/mocha/mocha.js"></script>
<script src="./node_modules/should/should.js"></script>
<script>window.mocha.setup('bdd');</script>
<script src="./node_modules/lodash/lodash.js"></script>
<script src="./node_modules/angular/angular.js"></script>
<script src="./node_modules/angular-mocks/angular-mocks.js"></script>
<script src="./ng-navigation-service.js"></script>
<script src="./tests.js"></script>
<script>
if (window.mochaPhantomJS) {
window.mochaPhantomJS.run();
} else {
window.mocha.run();
}
</script>
</body>
</html>