forked from amper5and/secrets.js
-
Notifications
You must be signed in to change notification settings - Fork 73
/
SpecRunner.html
executable file
·31 lines (26 loc) · 937 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
28
29
30
31
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<title>Jasmine Spec Runner v2.2.0</title>
<link
rel="shortcut icon"
type="image/png"
href="node_modules/jasmine-core/images/jasmine_favicon.png"
/>
<link
rel="stylesheet"
href="node_modules/jasmine-core/lib/jasmine-core/jasmine.css"
/>
<script src="node_modules/jasmine-core/lib/jasmine-core/jasmine.js"></script>
<script src="node_modules/jasmine-core/lib/jasmine-core/jasmine-html.js"></script>
<script src="node_modules/jasmine-core/lib/jasmine-core/boot.js"></script>
<!-- include source files here... -->
<script src="secrets.js"></script>
<!-- include spec files here... -->
<script src="spec/helpers/secrets/SpecHelper.js"></script>
<script src="spec/secrets/SecretsSpec.js"></script>
<script src="spec/secrets/SecretsPrivateSpec.js"></script>
</head>
<body></body>
</html>