-
Notifications
You must be signed in to change notification settings - Fork 91
/
testRunner.html
38 lines (37 loc) · 1.08 KB
/
testRunner.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
<!DOCTYPE html>
<html>
<head>
<title>Test Runner</title>
<meta charset="utf-8" />
<style>
html, body, #graphicalLogger {
padding: 0;
margin: 0;
outline: 0;
border: 0;
width: 100%;
height: 100%;
}
</style>
<link rel="stylesheet" href="node_modules/jstestr/jstestr/logger/graphicalLogger.css" />
</head>
<body>
<div id="graphicalLogger"></div>
<script src="node_modules/jstestr/requirejs/require.js"></script>
<script>
require({
baseUrl: ".",
packages: [{
name: "jstestr",
location: "node_modules/jstestr/jstestr"
}]
}, [
"jstestr/logger/browserLoggers",
"jstestr/runner/browserRunner"
], function (browserLoggers, browserRunner) {
browserLoggers();
browserRunner();
});
</script>
</body>
</html>