@@ -28,11 +28,10 @@ const testFixtures = fixtures.path('test-runner');
28
28
assert . strictEqual ( child . signal , null ) ;
29
29
assert . strictEqual ( child . stderr . toString ( ) , '' ) ;
30
30
const stdout = child . stdout . toString ( ) ;
31
- assert . match ( stdout , / o k 1 - .+ i n d e x \. t e s t \. j s / ) ;
32
- assert . match ( stdout , / n o t o k 2 - .+ r a n d o m \. t e s t \. m j s / ) ;
33
- assert . match ( stdout , / n o t o k 1 - t h i s s h o u l d f a i l / ) ;
31
+ assert . match ( stdout , / o k 1 - t h i s s h o u l d p a s s / ) ;
32
+ assert . match ( stdout , / n o t o k 2 - t h i s s h o u l d f a i l / ) ;
34
33
assert . match ( stdout , / o k 3 - .+ s u b d i r .+ s u b d i r _ t e s t \. j s / ) ;
35
- assert . match ( stdout , / o k 4 - . + r a n d o m \. c j s / ) ;
34
+ assert . match ( stdout , / o k 4 - t h i s s h o u l d p a s s / ) ;
36
35
}
37
36
38
37
{
@@ -41,11 +40,10 @@ const testFixtures = fixtures.path('test-runner');
41
40
const child = spawnSync ( process . execPath , args ) ;
42
41
43
42
const stdout = child . stdout . toString ( ) ;
44
- assert . match ( stdout , / o k 1 - .+ i n d e x \. t e s t \. j s / ) ;
45
- assert . match ( stdout , / n o t o k 2 - .+ r a n d o m \. t e s t \. m j s / ) ;
46
- assert . match ( stdout , / n o t o k 1 - t h i s s h o u l d f a i l / ) ;
43
+ assert . match ( stdout , / o k 1 - t h i s s h o u l d p a s s / ) ;
44
+ assert . match ( stdout , / n o t o k 2 - t h i s s h o u l d f a i l / ) ;
47
45
assert . match ( stdout , / o k 3 - .+ s u b d i r .+ s u b d i r _ t e s t \. j s / ) ;
48
- assert . match ( stdout , / o k 4 - . + r a n d o m \. c j s / ) ;
46
+ assert . match ( stdout , / o k 4 - t h i s s h o u l d p a s s / ) ;
49
47
assert . strictEqual ( child . status , 1 ) ;
50
48
assert . strictEqual ( child . signal , null ) ;
51
49
assert . strictEqual ( child . stderr . toString ( ) , '' ) ;
@@ -61,10 +59,10 @@ const testFixtures = fixtures.path('test-runner');
61
59
assert . strictEqual ( child . stderr . toString ( ) , '' ) ;
62
60
const stdout = child . stdout . toString ( ) ;
63
61
assert . match ( stdout , / n o t o k 1 - .+ i n d e x \. j s / ) ;
64
- assert . match ( stdout , / o k 2 - .+ i n d e x \. t e s t \. j s / ) ;
65
- assert . match ( stdout , / n o t o k 3 - .+ r a n d o m \. t e s t \. m j s / ) ;
66
- assert . match ( stdout , / n o t o k 1 - t h i s s h o u l d f a i l / ) ;
62
+ assert . match ( stdout , / o k 2 - t h i s s h o u l d p a s s / ) ;
63
+ assert . match ( stdout , / n o t o k 3 - t h i s s h o u l d f a i l / ) ;
67
64
assert . match ( stdout , / o k 4 - .+ s u b d i r .+ s u b d i r _ t e s t \. j s / ) ;
65
+ assert . match ( stdout , / o k 5 - t h i s s h o u l d p a s s / ) ;
68
66
}
69
67
70
68
{
@@ -89,11 +87,10 @@ const testFixtures = fixtures.path('test-runner');
89
87
assert . strictEqual ( child . signal , null ) ;
90
88
assert . strictEqual ( child . stderr . toString ( ) , '' ) ;
91
89
const stdout = child . stdout . toString ( ) ;
92
- assert . match ( stdout , / o k 1 - .+ i n d e x \. t e s t \. j s / ) ;
93
- assert . match ( stdout , / n o t o k 2 - .+ r a n d o m \. t e s t \. m j s / ) ;
94
- assert . match ( stdout , / n o t o k 1 - t h i s s h o u l d f a i l / ) ;
90
+ assert . match ( stdout , / o k 1 - t h i s s h o u l d p a s s / ) ;
91
+ assert . match ( stdout , / n o t o k 2 - t h i s s h o u l d f a i l / ) ;
95
92
assert . match ( stdout , / o k 3 - .+ s u b d i r .+ s u b d i r _ t e s t \. j s / ) ;
96
- assert . match ( stdout , / o k 4 - . + r a n d o m \. c j s / ) ;
93
+ assert . match ( stdout , / o k 4 - t h i s s h o u l d p a s s / ) ;
97
94
}
98
95
99
96
{
@@ -131,42 +128,36 @@ const testFixtures = fixtures.path('test-runner');
131
128
assert . strictEqual ( child . signal , null ) ;
132
129
assert . strictEqual ( child . stderr . toString ( ) , '' ) ;
133
130
const stdout = child . stdout . toString ( ) ;
134
- assert . match ( stdout , / # S u b t e s t : .+ i n d e x \. t e s t \. j s / ) ;
135
- assert . match ( stdout , / { 4 } # S u b t e s t : t h i s s h o u l d p a s s / ) ;
136
- assert . match ( stdout , / { 4 } o k 1 - t h i s s h o u l d p a s s / ) ;
137
- assert . match ( stdout , / { 6 } - - - / ) ;
138
- assert . match ( stdout , / { 6 } d u r a t i o n _ m s : .* / ) ;
139
- assert . match ( stdout , / { 6 } \. \. \. / ) ;
140
- assert . match ( stdout , / { 4 } 1 \. \. 1 / ) ;
141
-
142
- assert . match ( stdout , / o k 1 - .+ i n d e x \. t e s t \. j s / ) ;
131
+ assert . match ( stdout , / # S u b t e s t : t h i s s h o u l d p a s s / ) ;
132
+ assert . match ( stdout , / o k 1 - t h i s s h o u l d p a s s / ) ;
133
+ assert . match ( stdout , / { 2 } - - - / ) ;
134
+ assert . match ( stdout , / { 2 } d u r a t i o n _ m s : .* / ) ;
135
+ assert . match ( stdout , / { 2 } \. \. \. / ) ;
143
136
144
137
assert . match ( stdout , / # S u b t e s t : .+ i n v a l i d - t a p \. j s / ) ;
145
- assert . match ( stdout , / { 4 } # i n v a l i d t a p o u t p u t / ) ;
138
+ assert . match ( stdout , / # i n v a l i d t a p o u t p u t / ) ;
146
139
assert . match ( stdout , / o k 2 - .+ i n v a l i d - t a p \. j s / ) ;
147
140
148
- assert . match ( stdout , / # S u b t e s t : .+ n e s t e d \. j s / ) ;
149
- assert . match ( stdout , / { 4 } # S u b t e s t : l e v e l 0 a / ) ;
150
- assert . match ( stdout , / { 8 } # S u b t e s t : l e v e l 1 a / ) ;
151
- assert . match ( stdout , / { 8 } o k 1 - l e v e l 1 a / ) ;
152
- assert . match ( stdout , / { 8 } # S u b t e s t : l e v e l 1 b / ) ;
153
- assert . match ( stdout , / { 8 } n o t o k 2 - l e v e l 1 b / ) ;
154
- assert . match ( stdout , / { 10 } c o d e : ' E R R _ T E S T _ F A I L U R E ' / ) ;
155
- assert . match ( stdout , / { 10 } s t a c k : | - ' / ) ;
156
- assert . match ( stdout , / { 12 } T e s t C o n t e x t \. < a n o n y m o u s > .* / ) ;
157
- assert . match ( stdout , / { 8 } # S u b t e s t : l e v e l 1 c / ) ;
158
- assert . match ( stdout , / { 8 } o k 3 - l e v e l 1 c # S K I P a a a / ) ;
159
- assert . match ( stdout , / { 8 } # S u b t e s t : l e v e l 1 d / ) ;
160
- assert . match ( stdout , / { 8 } o k 4 - l e v e l 1 d / ) ;
161
- assert . match ( stdout , / { 4 } n o t o k 1 - l e v e l 0 a / ) ;
162
- assert . match ( stdout , / { 6 } e r r o r : ' 1 s u b t e s t f a i l e d ' / ) ;
163
- assert . match ( stdout , / { 4 } # S u b t e s t : l e v e l 0 b / ) ;
164
- assert . match ( stdout , / { 4 } n o t o k 2 - l e v e l 0 b / ) ;
165
- assert . match ( stdout , / { 6 } e r r o r : ' l e v e l 0 b e r r o r ' / ) ;
166
- assert . match ( stdout , / n o t o k 3 - .+ n e s t e d \. j s / ) ;
167
- assert . match ( stdout , / # t e s t s 3 / ) ;
141
+ assert . match ( stdout , / # S u b t e s t : l e v e l 0 a / ) ;
142
+ assert . match ( stdout , / { 4 } # S u b t e s t : l e v e l 1 a / ) ;
143
+ assert . match ( stdout , / { 4 } o k 1 - l e v e l 1 a / ) ;
144
+ assert . match ( stdout , / { 4 } # S u b t e s t : l e v e l 1 b / ) ;
145
+ assert . match ( stdout , / { 4 } n o t o k 2 - l e v e l 1 b / ) ;
146
+ assert . match ( stdout , / { 6 } c o d e : ' E R R _ T E S T _ F A I L U R E ' / ) ;
147
+ assert . match ( stdout , / { 6 } s t a c k : | - ' / ) ;
148
+ assert . match ( stdout , / { 8 } T e s t C o n t e x t \. < a n o n y m o u s > .* / ) ;
149
+ assert . match ( stdout , / { 4 } # S u b t e s t : l e v e l 1 c / ) ;
150
+ assert . match ( stdout , / { 4 } o k 3 - l e v e l 1 c # S K I P a a a / ) ;
151
+ assert . match ( stdout , / { 4 } # S u b t e s t : l e v e l 1 d / ) ;
152
+ assert . match ( stdout , / { 4 } o k 4 - l e v e l 1 d / ) ;
153
+ assert . match ( stdout , / n o t o k 3 - l e v e l 0 a / ) ;
154
+ assert . match ( stdout , / { 2 } e r r o r : ' 1 s u b t e s t f a i l e d ' / ) ;
155
+ assert . match ( stdout , / # S u b t e s t : l e v e l 0 b / ) ;
156
+ assert . match ( stdout , / n o t o k 4 - l e v e l 0 b / ) ;
157
+ assert . match ( stdout , / { 2 } e r r o r : ' l e v e l 0 b e r r o r ' / ) ;
158
+ assert . match ( stdout , / # t e s t s 4 / ) ;
168
159
assert . match ( stdout , / # p a s s 2 / ) ;
169
- assert . match ( stdout , / # f a i l 1 / ) ;
160
+ assert . match ( stdout , / # f a i l 2 / ) ;
170
161
}
171
162
172
163
{
@@ -181,16 +172,15 @@ const testFixtures = fixtures.path('test-runner');
181
172
assert . strictEqual ( child . signal , null ) ;
182
173
assert . strictEqual ( child . stderr . toString ( ) , '' ) ;
183
174
const stdout = child . stdout . toString ( ) ;
184
- assert . match ( stdout , / # S u b t e s t : .+ u s e r - l o g s \. j s / ) ;
185
- assert . match ( stdout , / { 4 } # s t d e r r 1 / ) ;
186
- assert . match ( stdout , / { 4 } # s t d e r r 2 / ) ;
187
- assert . match ( stdout , / { 4 } # s t d o u t 3 / ) ;
188
- assert . match ( stdout , / { 4 } # s t d e r r 6 / ) ;
189
- assert . match ( stdout , / { 4 } # n o t o k 1 - f a k e t e s t / ) ;
190
- assert . match ( stdout , / { 4 } # s t d e r r 5 / ) ;
191
- assert . match ( stdout , / { 4 } # s t d o u t 4 / ) ;
192
- assert . match ( stdout , / { 4 } # S u b t e s t : a t e s t / ) ;
193
- assert . match ( stdout , / { 4 } o k 1 - a t e s t / ) ;
175
+ assert . match ( stdout , / # s t d e r r 1 / ) ;
176
+ assert . match ( stdout , / # s t d e r r 2 / ) ;
177
+ assert . match ( stdout , / # s t d o u t 3 / ) ;
178
+ assert . match ( stdout , / # s t d e r r 6 / ) ;
179
+ assert . match ( stdout , / # n o t o k 1 - f a k e t e s t / ) ;
180
+ assert . match ( stdout , / # s t d e r r 5 / ) ;
181
+ assert . match ( stdout , / # s t d o u t 4 / ) ;
182
+ assert . match ( stdout , / # S u b t e s t : a t e s t / ) ;
183
+ assert . match ( stdout , / o k 1 - a t e s t / ) ;
194
184
assert . match ( stdout , / # t e s t s 1 / ) ;
195
185
assert . match ( stdout , / # p a s s 1 / ) ;
196
186
}
0 commit comments