-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathassessment.html
More file actions
42 lines (36 loc) · 1.16 KB
/
assessment.html
File metadata and controls
42 lines (36 loc) · 1.16 KB
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
36
37
38
39
40
41
42
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>JS 101 Exercises</title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jasmine/3.6.0/jasmine.css"/>
<style>
h1 {
font-family: monospace;
}
.jasmine-suite {
margin-top: 8px;
margin-bottom: 7px;
background-color: #ffffff;
padding: 10px 5px;
border-radius: 5px;
}
ul.jasmine-suite > ul {
padding: 0;
}
.jasmine_html-reporter .jasmine-summary ul.jasmine-suite {
margin-top: 7px;
margin-bottom: 7px;
padding: 5px
}
</style>
</head>
<body><h1>JavaScript 2 Assessment Retake</h1>
<p>See README.md for exercise directions</p>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jasmine/3.6.0/jasmine.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jasmine/3.6.0/jasmine-html.js"></script>
<script src="./customJasmineBoot.js"></script>
<script src="./tests.js" type="text/javascript"></script>
<script src="./solutions.js" type="text/javascript"></script>
</body>
</html>