-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspecs.html
35 lines (29 loc) · 979 Bytes
/
specs.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
34
35
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Jasmine Spec Runner</title>
<link rel="shortcut icon" type="image/png" href="vendor/jasmine/images/jasmine_favicon.png">
<link rel="stylesheet" href="vendor/jasmine/lib/jasmine-core/jasmine.css">
<script src="vendor/jasmine/lib/jasmine-core/jasmine.js"></script>
<script src="vendor/jasmine/lib/jasmine-core/jasmine-html.js"></script>
<script src="vendor/jasmine/lib/jasmine-core/boot.js"></script>
<!-- include source files here... -->
<script src="vendor/lodash/lodash.min.js"></script>
<script src="vendor/jquery/dist/jquery.min.js"></script>
<script src="helpers.js"></script>
<script src="turu.js"></script>
<!-- include spec files here... -->
<script src="specs.js"></script>
<style type="text/css">
#the_stage {
border: 2px dashed #000;
padding: 5px;
margin: 5px;
}
</style>
</head>
<body>
<div id="the_stage"></div>
</body>
</html>