-
Notifications
You must be signed in to change notification settings - Fork 0
/
tests.html
40 lines (34 loc) · 1.51 KB
/
tests.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
38
39
40
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Tests</title>
<link rel="shortcut icon" type="image/png" href="https://cdnjs.cloudflare.com/ajax/libs/jasmine/2.4.1/jasmine_favicon.png">
<link rel="stylesheet" type="text/css" href="https://cdnjs.cloudflare.com/ajax/libs/jasmine/2.4.1/jasmine.css">
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jasmine/2.4.1/jasmine.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jasmine/2.4.1/jasmine-html.js"></script>
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jasmine/2.4.1/boot.js"></script>
<!-- include source files here... -->
<script src="complex.js"></script>
<script src="complex_poly.js"></script>
<script src="animation.js"></script>
<script src="rotation_counter.js"></script>
<script src="complex_formula.js"></script>
<script src="quadratic.js"></script>
<script src="cubic.js"></script>
<script src="quartic.js"></script>
<script src="quintic.js"></script>
<!-- include spec files here... -->
<script src="complex_tests.js"></script>
<script src="complex_poly_tests.js"></script>
<script src="animation_tests.js"></script>
<script src="rotation_counter_tests.js"></script>
<script src="complex_formula_tests.js"></script>
<script src="quadratic_tests.js"></script>
<script src="cubic_tests.js"></script>
<script src="quartic_tests.js"></script>
<script src="quintic_tests.js"></script>
</head>
<body>
</body>
</html>