@@ -32,6 +32,8 @@ const testFixtures = fixtures.path('test-runner');
3232 assert . match ( stdout , / n o t o k 2 - t h i s s h o u l d f a i l / ) ;
3333 assert . match ( stdout , / o k 3 - s u b d i r .+ s u b d i r _ t e s t \. j s / ) ;
3434 assert . match ( stdout , / o k 4 - t h i s s h o u l d p a s s / ) ;
35+ assert . match ( stdout , / o k 5 - t h i s s h o u l d b e s k i p p e d / ) ;
36+ assert . match ( stdout , / o k 6 - t h i s s h o u l d b e e x e c u t e d / ) ;
3537}
3638
3739{
@@ -44,6 +46,8 @@ const testFixtures = fixtures.path('test-runner');
4446 assert . match ( stdout , / n o t o k 2 - t h i s s h o u l d f a i l / ) ;
4547 assert . match ( stdout , / o k 3 - s u b d i r .+ s u b d i r _ t e s t \. j s / ) ;
4648 assert . match ( stdout , / o k 4 - t h i s s h o u l d p a s s / ) ;
49+ assert . match ( stdout , / o k 5 - t h i s s h o u l d b e s k i p p e d / ) ;
50+ assert . match ( stdout , / o k 6 - t h i s s h o u l d b e e x e c u t e d / ) ;
4751 assert . strictEqual ( child . status , 1 ) ;
4852 assert . strictEqual ( child . signal , null ) ;
4953 assert . strictEqual ( child . stderr . toString ( ) , '' ) ;
@@ -87,6 +91,8 @@ const testFixtures = fixtures.path('test-runner');
8791 assert . match ( stdout , / n o t o k 2 - t h i s s h o u l d f a i l / ) ;
8892 assert . match ( stdout , / o k 3 - s u b d i r .+ s u b d i r _ t e s t \. j s / ) ;
8993 assert . match ( stdout , / o k 4 - t h i s s h o u l d p a s s / ) ;
94+ assert . match ( stdout , / o k 5 - t h i s s h o u l d b e s k i p p e d / ) ;
95+ assert . match ( stdout , / o k 6 - t h i s s h o u l d b e e x e c u t e d / ) ;
9096}
9197
9298{
@@ -152,9 +158,12 @@ const testFixtures = fixtures.path('test-runner');
152158 assert . match ( stdout , / n o t o k 4 - l e v e l 0 b / ) ;
153159 assert . match ( stdout , / { 2 } e r r o r : ' l e v e l 0 b e r r o r ' / ) ;
154160 assert . match ( stdout , / # t e s t s 8 / ) ;
161+ assert . match ( stdout , / # s u i t e s 0 / ) ;
155162 assert . match ( stdout , / # p a s s 4 / ) ;
156163 assert . match ( stdout , / # f a i l 3 / ) ;
164+ assert . match ( stdout , / # c a n c e l l e d 0 / ) ;
157165 assert . match ( stdout , / # s k i p p e d 1 / ) ;
166+ assert . match ( stdout , / # t o d o 0 / ) ;
158167}
159168
160169{
0 commit comments