-
Notifications
You must be signed in to change notification settings - Fork 25
/
SpecRunner.html
27 lines (23 loc) · 976 Bytes
/
SpecRunner.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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Jasmine Test Runner</title>
<link rel="stylesheet" type="text/css" href="lib/jasmine/jasmine.css">
<script type="text/javascript" src="lib/jasmine/jasmine.js"></script>
<script type="text/javascript" src="lib/jasmine/jasmine-html.js"></script>
<!-- include source files here... -->
<script type="text/javascript" src="routes.js"></script>
<!-- include spec files here... -->
<script type="text/javascript" src="tests/routemanagement.js"></script>
<script type="text/javascript" src="tests/routeexection.js"></script>
<script type="text/javascript" src="tests/routeparsing.js"></script>
<script type="text/javascript" src="tests/routesframework.js"></script>
</head>
<body>
<script type="text/javascript">
jasmine.getEnv().addReporter(new jasmine.TrivialReporter());
jasmine.getEnv().execute();
</script>
</body>
</html>