forked from DevMountain/javascript-1-afternoon
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
26 lines (20 loc) · 750 Bytes
/
index.html
File metadata and controls
26 lines (20 loc) · 750 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Jasmine Spec Runner v2.3.4</title>
<link rel="shortcut icon" type="image/png" href="test/lib/jasmine-2.3.4/jasmine_favicon.png">
<link rel="stylesheet" href="test/lib/jasmine-2.3.4/jasmine.css">
<script src="test/lib/jasmine-2.3.4/jasmine.js"></script>
<script src="test/lib/jasmine-2.3.4/jasmine-html.js"></script>
<script src="test/lib/jasmine-2.3.4/boot.js"></script>
<!-- include source files here... -->
<script src="fns-and-scope.js"></script>
<script src="closures.js"></script>
<!-- include spec files here... -->
<script src="test/spec/Fns-and-scopeSpec.js"></script>
<script src="test/spec/ClosuresSpec.js"></script>
</head>
<body>
</body>
</html>