-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSpecRunner.html
More file actions
34 lines (28 loc) · 942 Bytes
/
Copy pathSpecRunner.html
File metadata and controls
34 lines (28 loc) · 942 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
29
30
31
32
33
34
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Jasmine Spec Runner v2.2.0</title>
<link rel="shortcut icon" type="image/png" href="lib/jasmine-2.2.0/jasmine_favicon.png">
<link rel="stylesheet" href="lib/jasmine-2.2.0/jasmine.css">
<!--
<script src="lib/jasmine-2.2.0/jasmine.js"></script>
<script src="lib/jasmine-2.2.0/jasmine-html.js"></script>
<script src="lib/jasmine-2.2.0/boot.js"></script>-->
<!-- include source files here... -->
<script src="src/cp.js"></script>
<script src="src/CPModel.js"></script>
<script src="src/Myth.js"></script>
<script src="src/Theme.js"></script>
<script src="scripts.js"></script>
<!-- include spec files here... -->
<!--<script type="text/javascript" src="spec/CPModel.spec.js"></script>-->
</head>
<body>
<script>
(function () {
cp.initModule();
} () );
</script>
</body>
</html>