-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathjasmine-testing.html
29 lines (21 loc) · 1.31 KB
/
jasmine-testing.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
<!DOCTYPE html>
<html>
<head>
<title>Jasmine Testing</title>
<script src="https://code.jquery.com/jquery-3.3.1.min.js" integrity="sha256-FgpCb/KJQlLNfOu91ta32o/NMZxltwRo8QtmkMRdAu8=" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.7/umd/popper.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.3.1/js/bootstrap.min.js"></script>
<!-- Gijgo scripts for datepickers and timepickers scripts -->
<script src="https://unpkg.com/[email protected]/js/gijgo.min.js"></script>
<!-- Load Jasmine Framework -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/jasmine/3.1.0/jasmine.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jasmine/3.1.0/jasmine-html.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/jasmine/3.1.0/boot.js"></script>
<script type="text/javascript" src="https://bowercdn.net/c/jasmine-jquery-2.1.1/lib/jasmine-jquery.js"></script>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/jasmine/3.1.0/jasmine.css">
<!-- Load project scripts -->
<script type="text/javascript" src="../../static/js/main.js"></script>
<!-- Load Tests -->
<script type="text/javascript" src="spec/thehouseofmouseSpec.js"></script>
</head>
</html>