-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathrun-tests-by-opening-in-browser.html
More file actions
59 lines (53 loc) · 1.74 KB
/
run-tests-by-opening-in-browser.html
File metadata and controls
59 lines (53 loc) · 1.74 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>DCC Tests</title>
<link
rel="shortcut icon"
type="image/png"
href="./assets/ga_logo_black.png"
/>
<link rel="stylesheet" href="lib/jasmine-5.0.0/jasmine.css" />
<script src="lib/jasmine-5.0.0/jasmine.js"></script>
<script src="lib/jasmine-5.0.0/jasmine-html.js"></script>
<script src="lib/jasmine-5.0.0/boot0.js"></script>
<script src="lib/jasmine-5.0.0/boot1.js"></script>
<script src="challenges.js"></script>
<script src="spec/ChallengesSpec.js"></script>
</head>
<body>
<main>
<div class="header">
<img src="./assets/ga_logo.png" alt="GA Logo" />
<h1>Instructions</h1>
</div>
<ul>
<li>
Solve the challenges by writing functions in the
<code>challenges.js</code> file.
</li>
<li>
Each code challenge requires writing a single function to solve.
</li>
<li>
Be sure to name the function <strong>exactly</strong> as specified by
the challenge.
</li>
<li>
The default display shows an overall summary of all challenges.To see
only the challenges that are failing, click the
<strong>Failures</strong> link.
</li>
<li>
Your instructors will be checking your progress from time-to-time.
Don't move any of the files from where they currently are- simply
solve the challenges, commit your work, and push your solutions to
GitHub.
</li>
</ul>
</main>
</body>
</html>