-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
34 lines (31 loc) · 1.12 KB
/
index.html
File metadata and controls
34 lines (31 loc) · 1.12 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
<!DOCTYPE html>
<meta charset="utf-8" />
<title>Test Suite</title>
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-2.18.0.css" />
<body>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
<!-- DON'T TOUCH -->
<script src="https://code.jquery.com/qunit/qunit-2.18.0.js"></script>
<!-- Sort Function: Javascript Source Code -->
<script src="./scripts/filterCarByAvailability.js"></script>
<script src="./scripts/sortCarByYearAscendingly.js"></script>
<script src="./scripts/sortCarByYearDecendingly.js"></script>
<!-- DON'T TOUCH -->
<script
src="https://fnurhidayat.github.io/javascript-array-challenge/scripts/getCars.js"
crossorigin
></script>
<script
src="https://fnurhidayat.github.io/javascript-array-challenge/scripts/filterCarByAvailability.test.js"
crossorigin
></script>
<script
src="https://fnurhidayat.github.io/javascript-array-challenge/scripts/sortCarByYearAscendingly.test.js"
crossorigin
></script>
<script
src="https://fnurhidayat.github.io/javascript-array-challenge/scripts/sortCarByYearDecendingly.test.js"
crossorigin
></script>
</body>