forked from makersacademy/news-summary-challenge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSpecRunner.html
31 lines (25 loc) · 1.08 KB
/
SpecRunner.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
<!DOCTYPE html>
<head>
<title>The Best Tests</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="">
<script src='public/js/models/APIDataModel.js'></script>
<script src='public/js/models/newsArticleModel.js'></script>
<script src='public/js/models/newsListModel.js'></script>
<script src='public/js/models/newsSummaryModel.js'></script>
<script src='public/js/views/headlinesView.js'></script>
<script src='public/js/views/summaryView.js'></script>
<script src='public/js/newsController.js'></script>
<!-- <script src='public/js/index.js'></script> -->
<script src='spec/testingFramework.js'></script>
<script src='spec/newsArticleSpec.js'></script>
<script src='spec/newsListSpec.js'></script>
<script src='spec/headlinesViewSpec.js'></script>
<script src='spec/summaryViewSpec.js'></script>
<script src='spec/newsSummarySpec.js'></script>
<script src='spec/newsControllerSpec.js'></script>
</head>
<body>
</body>
</html>