-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathniceReporterSelectedTest.html
46 lines (43 loc) · 1.83 KB
/
niceReporterSelectedTest.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
<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("passed", { url: "firstPage.html" })
.then(function (firstTest) {
testHelper
.comparisonP("failed", { url: "secondTest.html" })
.then(function (secondTest) {
testHelper
.comparisonP("failed", {
url: "thirdTest.html",
})
.then(function (thirdTest) {
reporter.reportDeselectedComparison(
firstTest
);
reporter.reportSelectedComparison(
secondTest
);
reporter.reportDeselectedComparison(
thirdTest
);
reporter.reportComparison(secondTest);
reporter.reportTestSuite(
testHelper.failingTestSuite()
);
});
});
});
</script>
</body>
</html>