-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtestRunner.html
executable file
·33 lines (28 loc) · 987 Bytes
/
testRunner.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">
<title>AngularJS test</title>
<link rel="stylesheet" href="testRunnerStyle.css">
<script src="https://raw.github.com/pivotal/jasmine/master/lib/jasmine-core/jasmine.js"></script>
<script src="https://raw.github.com/pivotal/jasmine/master/lib/jasmine-core/jasmine-html.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/angularjs/1.0.3/angular.min.js"></script>
<script src="http://code.angularjs.org/1.0.3/angular-mocks.js"></script>
<script src="app.js"></script>
<script src="topologicalSort.js"></script>
<script src="appSpec.js"></script>
<script src="topologicalSortSpec.js"></script>
</head>
<body>
<script>
// KICK OFF JASMINE
var jasmineEnv = jasmine.getEnv();
var trivialReporter = new jasmine.TrivialReporter();
jasmineEnv.addReporter(trivialReporter);
jasmineEnv.specFilter = function(spec) {
return trivialReporter.specFilter(spec);
};
jasmineEnv.execute();
</script>
</body>
</html>