-
Notifications
You must be signed in to change notification settings - Fork 2
/
run-tests-by-opening-in-browser.html
37 lines (34 loc) · 1.43 KB
/
run-tests-by-opening-in-browser.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
36
37
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>DCC Tests</title>
<link rel="shortcut icon" type="image/png" href="assets/galogo.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>
<h1><img src="/assets/galogo.png">Instructions</h1>
<ul>
<li>By default, Jasmine (the testing framework) will run the tests in random order.
To prevent this, click on the <strong>Options</strong> button on the near the
top-right of the page and uncheck the <em>run tests in random order</em> checkbox.
</li>
<li>Solve the challenges by writing functions in the <code>challenges.js</code> file only.
<strong>Do not modify any other files.</strong>
</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>
</ul>
</main>
</body>
</html>