-
Notifications
You must be signed in to change notification settings - Fork 3
/
SpecRunner.html
63 lines (52 loc) · 2.39 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Jasmine Spec Runner v3.4.0</title>
<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> <!--jasmine-3.4.0/jasmine.js-->
<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>
<script type="text/javascript" src="./extern/jQuery-3.4.1.js"></script>
<script type="text/javascript" src="./extern/ace-17.06.19/ace.js"></script>
<script type="text/javascript" src="./extern/ace-17.06.19/ext-language_tools.js"></script>
<script type="text/javascript" src="./extern/ace-17.06.19/ext-searchbox.js"></script>
<script src="./extern/highcharts-7.1.2/highcharts.js"></script>
<script src="./extern/highcharts-7.1.2/no-data-to-display.js"></script>
<script src="./extern/hyperhtml-2.30.1.js"></script>
<script>
let hyper = hyperHTML.hyper;
let wire = hyperHTML.wire;
</script>
<script type="module" src="src/GitLab.test.js"></script>
<script type="module" src="src/parser.test.js"></script>
<script type="module" src="src/components/CodeEditor.test.js"></script>
<script type="module" src="src/components/OverallEditor.test.js"></script>
<script type="module" src="src/components/FileBrowser.test.js"></script>
<script type="module" src="src/components/CreateFileWindow.test.js"></script>
<script type="module" src="src/components/GenerateUI.test.js"></script>
<script>var module= {}; var exports = {};</script>
<script src="node_modules/jasmine/lib/reporters/console_reporter.js"></script>
<script>
var queryString = new jasmine.QueryString({
getWindowLocation: function() { return window.location; }
});
if(!!queryString.getParam("ignoreSpecs")){
const specsToIgnore = queryString.getParam("ignoreSpecs").split(",");
jasmine.getEnv().configure({
specFilter: spec => {
return !specsToIgnore.some(ignore => spec.getFullName().includes(ignore))
}
})
}
if(typeof printExternalMessage !== "undefined"){
let str = "";
const cr = new ConsoleReporter();
cr.setOptions({print: x => printExternalMessage(x), showColors: true});
jasmine.getEnv().addReporter(cr);
}
</script>
</head>
<body>
</body>
</html>