-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathniceReporterMultipleMissingReference.html
42 lines (39 loc) · 1.67 KB
/
niceReporterMultipleMissingReference.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
<html>
<head>
<meta charset="utf-8" />
<link rel="stylesheet" href="../../src/reporter/niceReporter.css" />
<script src="../../src/scope.js"></script>
<script src="../../src/util.js"></script>
<script src="../../src/reporter/niceReporter.js"></script>
</head>
<body>
<script src="testHelper.js"></script>
<script>
var reporter = testHelper.constructNiceReporter();
testHelper.setUp();
testHelper
.comparisonP("referenceMissing", { url: "firstPage" })
.then(function (test) {
reporter.reportSelectedComparison(test);
reporter.reportComparison(test);
testHelper
.comparisonP("referenceMissing", { url: "secondPage" })
.then(function (test) {
reporter.reportSelectedComparison(test);
reporter.reportComparison(test);
testHelper
.comparisonP("referenceMissing", {
url: "yetAnotherPage",
})
.then(function (test) {
reporter.reportSelectedComparison(test);
reporter.reportComparison(test);
reporter.reportTestSuite(
testHelper.failingTestSuite()
);
});
});
});
</script>
</body>
</html>