-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest-report.html
129 lines (128 loc) · 6.09 KB
/
test-report.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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<html><head><meta charset="utf-8"/><title>Functional Test Report</title><style type="text/css">html, body {
font-family: Arial, Helvetica, sans-serif;
font-size: 1rem;
margin: 0;
padding: 0;
color: #333;
}
body {
padding: 1rem;
font-size: 0.85rem;
}
header {
display: flex;
align-items: center;
}
#title {
margin: 0;
flex-grow: 1;
}
#logo {
height: 4rem;
}
#timestamp {
font-weight: bold;
color: #666;
margin-bottom: 0.5rem;
}
#summary {
color: #999;
margin-bottom: 1rem;
}
.suite-info {
padding: 1rem;
background-color: #eee;
border-bottom: 2px solid #999;
color: #999;
display: flex;
align-items: center;
}
.suite-info .suite-path {
font-weight: bold;
word-break: break-all;
flex-grow: 1;
}
.suite-info .suite-time {
margin-left: 0.5rem;
padding: 0.2rem 0.3rem;
font-size: 0.75rem;
}
.suite-info .suite-time.warn {
background-color: #D8000C;
color: #fff;
}
.suite-table {
width: 100%;
font-size: 0.85rem;
margin-bottom: 1em;
}
.suite-table td {
padding: 0.5rem;
}
.suite-table tr.passed {
background-color: #DFF2BF;
color: #4F8A10;
}
.suite-table tr.pending {
background-color: #FEEFB3;
color: #9F6000;
}
.suite-table tr.failed {
background-color: #FFBABA;
color: #D8000C;
}
.suite-table td {
font-size: 0.85rem;
border-bottom: 1px solid #aaa;
vertical-align: top;
}
.suite-table td.suite {
font-weight: bold;
width: 20%;
}
.suite-table td.test {
font-style: italic;
width: 60%;
}
.suite-table td.test .failureMsg {
font-size: 1rem;
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
word-wrap: break-word;
}
.suite-table td.result {
width: 20%;
text-align: right;
}
/* CONSOLE LOGS */
.suite-consolelog {
margin-bottom: 2rem;
padding: 1rem;
background-color: #efefef;
}
.suite-consolelog-header {
font-weight: bold;
}
.suite-consolelog-item {
padding: 0.5rem;
}
.suite-consolelog-item pre {
margin: 0;
}
.suite-consolelog-item-origin {
color: #777;
font-weight: bold;
}
.suite-consolelog-item-message {
color: #000;
font-size: 1rem;
padding: 0 0.5rem;
}
</style></head><header><h1 id="title">Functional Test Report</h1></header><div id="metadata-container"><div id="timestamp">Start: 2018-12-09 17:31:50</div><div id="summary">
20 tests --
20 passed /
0 failed /
0 pending
</div></div><div class="suite-info"><div class="suite-path">./src/test/dispatchInterceptor.test.js</div><div class="suite-time">0.258s</div></div><table class="suite-table" cellspacing="0" cellpadding="0"><tr class="passed"><td class="suite">enhanced dispatch</td><td class="test">has standard redux behavior</td><td class="result">passed in 0.004s</td></tr><tr class="passed"><td class="suite">enhanced dispatch</td><td class="test">handles standard redux thunks</td><td class="result">passed in 0.001s</td></tr><tr class="passed"><td class="suite">enhanced dispatch</td><td class="test">handles redux thunks with extra dispatch arguments</td><td class="result">passed in 0.002s</td></tr><tr class="passed"><td class="suite">enhanced dispatch</td><td class="test">throws error when trying to register interceptor without type</td><td class="result">passed in 0s</td></tr><tr class="passed"><td class="suite">enhanced dispatch</td><td class="test">throws error when trying to register two interceptors of the same type</td><td class="result">passed in 0s</td></tr><tr class="passed"><td class="suite">enhanced dispatch</td><td class="test">throws error when interceptor is no function</td><td class="result">passed in 0s</td></tr><tr class="passed"><td class="suite">enhanced dispatch</td><td class="test">throws error when interceptor returns no boolean</td><td class="result">passed in 0s</td></tr><tr class="passed"><td class="suite">enhanced dispatch</td><td class="test">calls registered interceptors with action, getState, dipatch timestamp and additional dispatch args</td><td class="result">passed in 0.002s</td></tr><tr class="passed"><td class="suite">enhanced dispatch</td><td class="test">blocks dispatch in case any interceptor returns false</td><td class="result">passed in 0s</td></tr><tr class="passed"><td class="suite">enhanced dispatch</td><td class="test">does not block dispatches with noIntercept in additional dispatch-object</td><td class="result">passed in 0.001s</td></tr><tr class="passed"><td class="suite">enhanced dispatch</td><td class="test">does not block dispatches with corresponding noInterceptTypes string in dispatch-object</td><td class="result">passed in 0s</td></tr><tr class="passed"><td class="suite">enhanced dispatch</td><td class="test">does not block dispatches with corresponding noInterceptTypes array in dispatch-object</td><td class="result">passed in 0.001s</td></tr><tr class="passed"><td class="suite">enhanced dispatch</td><td class="test">does not block dispatches with corresponding noInterceptTypes array in dispatch-object</td><td class="result">passed in 0s</td></tr><tr class="passed"><td class="suite">enhanced dispatch</td><td class="test">notifies about finished dispatch with intercept info</td><td class="result">passed in 0.002s</td></tr><tr class="passed"><td class="suite">enhanced dispatch</td><td class="test">allows to dispatch from interceptor</td><td class="result">passed in 0s</td></tr><tr class="passed"><td class="suite">enhanced dispatch</td><td class="test">by default does not intercept actions from thunks</td><td class="result">passed in 0.001s</td></tr><tr class="passed"><td class="suite">enhanced dispatch</td><td class="test">allows for interceptors that intercept in thunks</td><td class="result">passed in 0s</td></tr><tr class="passed"><td class="suite">enhanced dispatch</td><td class="test">by default passes intercept dispatch args to thunk dispatches</td><td class="result">passed in 0.001s</td></tr><tr class="passed"><td class="suite">enhanced dispatch</td><td class="test">can also dispatch without passing dispatch args to thunk</td><td class="result">passed in 0.001s</td></tr><tr class="passed"><td class="suite">enhanced dispatch</td><td class="test">correctly passes additional dispatch arguments with actions from thunks, also if interceptArgs are not passed</td><td class="result">passed in 0.001s</td></tr></table></html>