-
Notifications
You must be signed in to change notification settings - Fork 0
/
all-tests.html
42 lines (40 loc) · 863 Bytes
/
all-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
41
42
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>All PV Functional and Unit Tests</title>
<link rel="stylesheet" href="css/qunit.css">
<style>
#viewer {
width: 300px;
height: 300px;
display:none;
}
#root {
width:100%;
padding:0px;
margin:0px;
}
</style>
</head>
<body>
<table id=root><tr>
<td>
<div id="qunit"></div>
<div id="qunit-fixture"></div>
</td><td>
<div id="viewer"></div>
</td>
</tr></table>
</body>
<script src='js/require.js'></script>
<script src='js/qunit.js'></script>
<script>
QUnit.config.autostart = false;
QUnit.config.autoload = false;
</script>
<script data-cover-only='//src\/.*/'
data-cover-never='//(tests\/.*|src\/gl-matrix\.js)/'
src='js/blanket.min.js'></script>
<script src='src/tests/all.js'></script>
</html