forked from FS-Moringa/phase-1-review-strings-lab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
34 lines (26 loc) · 1.13 KB
/
index.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>JavaScript Strings Code-along</title>
<meta name="description" content="Introduction to JavaScript strings in the Learn.co curriculum">
<meta name="author" content="Flatiron School">
<!-- Include Mocha's stylesheet to style test results. -->
<link rel="stylesheet" href="node_modules/mocha/mocha.css">
</head>
<body>
<!-- <div> for Mocha to display test results. -->
<div id="mocha"></div>
<!-- Include Mocha and set it up for BDD-style testing. -->
<script src="node_modules/mocha/mocha.js"></script>
<script>mocha.setup('bdd');</script>
<!-- Include Chai as the matcher library. -->
<script src="node_modules/chai/chai.js"></script>
<!-- Include the student's JavaScript file(s). -->
<script src="index.js"></script>
<!-- Include the JavaScript file(s) containing the tests. -->
<script src="test/indexTest.js"></script>
<!-- Include Flatiron School's minified test runner to push results to Learn. -->
<script src="node_modules/learn-browser/learnBrowser.min.js"></script>
</body>
</html>