forked from gocodeup/intro-to-testing-js
-
Notifications
You must be signed in to change notification settings - Fork 33
Expand file tree
/
Copy pathreport.html
More file actions
24 lines (19 loc) · 746 Bytes
/
report.html
File metadata and controls
24 lines (19 loc) · 746 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Jasmine Spec Runner v3.3.0</title>
<link rel="shortcut icon" type="image/png" href="./jasmine/lib/jasmine-3.3.0/jasmine_favicon.png">
<link rel="stylesheet" href="./jasmine/lib/jasmine-3.3.0/jasmine.css">
</head>
<body>
<!-- Jasmine Library -->
<script src="./jasmine/lib/jasmine-3.3.0/jasmine.js"></script>
<script src="./jasmine/lib/jasmine-3.3.0/jasmine-html.js"></script>
<script src="./jasmine/lib/jasmine-3.3.0/boot.js"></script>
<!-- include the test files here... -->
<script src="./tests.js" type="text/javascript"></script>
<!-- include the implementation files here... -->
<script src="./code.js" type="text/javascript"></script>
</body>
</html>