-
Notifications
You must be signed in to change notification settings - Fork 0
/
specRunner.html
27 lines (23 loc) · 1.05 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<title>Document</title>
<link rel="shortcut icon" type="image/png" href="./node_modules/jasmine-core/lib/jasmine-core/jasmine_favicon.png">
<link rel="stylesheet" href="./node_modules/jasmine-core/lib/jasmine-core/jasmine.css">
<script src="./node_modules/jasmine-core/lib/jasmine-core/jasmine.js"></script>
<script src="./node_modules/jasmine-core/lib/jasmine-core/jasmine-html.js"></script>
<script src="./node_modules/jasmine-core/lib/jasmine-core/boot.js"></script>
<!-- include the library you want to test here... -->
<script src="./helpers/helpers.js"></script>
<script src="./helpers/sys.js"></script>
<script src="./node_modules/citeproc/citeproc_commonjs.js"></script>
<!-- include your test files here... -->
<script src="tests/system-tests.js"></script>
<script src="tests/validation-tests.js"></script>
<script src="tests/citation-tests.js"></script>
<script src="tests/bibliography-tests.js"></script>
</head>
<body>
</body>
</html>