forked from nodejs/node
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdot_reporter.snapshot
More file actions
221 lines (214 loc) · 3.95 KB
/
dot_reporter.snapshot
File metadata and controls
221 lines (214 loc) · 3.95 KB
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
..XX...X..XXX.X.....
XXX............X....
.....X...XXX.XX.....
XXXXXXX...XXXXX
Failed tests:
✖ sync fail todo (*ms) # TODO
Error: thrown from sync fail todo
*
*
*
*
*
*
*
✖ sync fail todo with message (*ms) # this is a failing todo
Error: thrown from sync fail todo with message
*
*
*
*
*
*
*
✖ sync throw fail (*ms)
Error: thrown from sync throw fail
*
*
*
*
*
*
*
✖ async throw fail (*ms)
Error: thrown from async throw fail
*
*
*
*
*
*
*
﹣ async skip fail (*ms) # SKIP
Error: thrown from async throw fail
*
*
*
*
*
*
*
✖ async assertion fail (*ms)
AssertionError [ERR_ASSERTION]: Expected values to be strictly equal:
true !== false
*
*
*
*
*
*
* {
generatedMessage: true,
code: 'ERR_ASSERTION',
actual: true,
expected: false,
operator: 'strictEqual'
}
✖ reject fail (*ms)
Error: rejected from reject fail
*
*
*
*
*
*
*
✖ +sync throw fail (*ms)
Error: thrown from subtest sync throw fail
*
*
*
*
*
*
*
*
*
*
✖ subtest sync throw fail (*ms)
'1 subtest failed'
✖ sync throw non-error fail (*ms)
Symbol(thrown symbol from sync throw non-error fail)
✖ sync skip option is false fail (*ms)
Error: this should be executed
*
*
*
*
*
*
*
✖ callback fail (*ms)
Error: callback failure
*
*
✖ callback also returns a Promise (*ms)
'passed a callback but also returned a Promise'
✖ callback throw (*ms)
Error: thrown from callback throw
*
*
*
*
*
*
*
✖ callback called twice (*ms)
'callback invoked multiple times'
✖ callback called twice in future tick (*ms)
Error [ERR_TEST_FAILURE]: callback invoked multiple times
* {
code: 'ERR_TEST_FAILURE',
failureType: 'multipleCallbackInvocations',
cause: 'callback invoked multiple times'
}
✖ callback async throw (*ms)
Error: thrown from callback async throw
*
*
✖ custom inspect symbol fail (*ms)
customized
✖ custom inspect symbol that throws fail (*ms)
{ foo: 1, Symbol(nodejs.util.inspect.custom): [Function: [nodejs.util.inspect.custom]] }
✖ sync throw fails at first (*ms)
Error: thrown from subtest sync throw fails at first
*
*
*
*
*
*
*
*
*
*
✖ sync throw fails at second (*ms)
Error: thrown from subtest sync throw fails at second
*
*
*
*
*
*
*
*
✖ subtest sync throw fails (*ms)
'2 subtests failed'
✖ timed out async test (*ms)
'test timed out after *ms'
✖ timed out callback test (*ms)
'test timed out after *ms'
✖ rejected thenable (*ms)
'custom error'
✖ unfinished test with uncaughtException (*ms)
Error: foo
*
*
*
✖ unfinished test with unhandledRejection (*ms)
Error: bar
*
*
*
✖ assertion errors display actual and expected properly (*ms)
AssertionError [ERR_ASSERTION]: Expected values to be loosely deep-equal:
{
bar: 1,
baz: {
date: 1970-01-01T00:00:00.000Z,
null: null,
number: 1,
string: 'Hello',
undefined: undefined
},
boo: [
1
],
foo: 1
}
should loosely deep-equal
{
baz: {
date: 1970-01-01T00:00:00.000Z,
null: null,
number: 1,
string: 'Hello',
undefined: undefined
},
boo: [
1
],
circular: <ref *1> {
bar: 2,
c: [Circular *1]
}
}
* {
generatedMessage: true,
code: 'ERR_ASSERTION',
actual: [Object],
expected: [Object],
operator: 'deepEqual'
}
✖ invalid subtest fail (*ms)
'test could not be started because its parent finished'