@@ -23,11 +23,9 @@ test('works with --test-only', () => {
2323 assert . strictEqual ( child . status , 0 ) ;
2424 assert . strictEqual ( child . signal , null ) ;
2525 assert . match ( stdout , / # t e s t s 2 / ) ;
26- assert . match ( stdout , / # s u i t e s 2 / ) ;
26+ assert . match ( stdout , / # s u i t e s 4 / ) ;
2727 assert . match ( stdout , / # p a s s 2 / ) ;
28- assert . match ( stdout , / o k 1 - s u i t e o n e / ) ;
2928 assert . match ( stdout , / o k 1 - s u i t e o n e - t e s t / ) ;
30- assert . match ( stdout , / o k 2 - s u i t e t w o / ) ;
3129 assert . match ( stdout , / o k 1 - s u i t e t w o - t e s t / ) ;
3230} ) ;
3331
@@ -45,11 +43,9 @@ test('works without --test-only', () => {
4543 assert . strictEqual ( child . status , 0 ) ;
4644 assert . strictEqual ( child . signal , null ) ;
4745 assert . match ( stdout , / # t e s t s 2 / ) ;
48- assert . match ( stdout , / # s u i t e s 2 / ) ;
46+ assert . match ( stdout , / # s u i t e s 4 / ) ;
4947 assert . match ( stdout , / # p a s s 2 / ) ;
50- assert . match ( stdout , / o k 1 - s u i t e o n e / ) ;
5148 assert . match ( stdout , / o k 1 - s u i t e o n e - t e s t / ) ;
52- assert . match ( stdout , / o k 2 - s u i t e t w o / ) ;
5349 assert . match ( stdout , / o k 1 - s u i t e t w o - t e s t / ) ;
5450} ) ;
5551
@@ -68,7 +64,7 @@ test('works with --test-name-pattern', () => {
6864 assert . strictEqual ( child . status , 0 ) ;
6965 assert . strictEqual ( child . signal , null ) ;
7066 assert . match ( stdout , / # t e s t s 0 / ) ;
71- assert . match ( stdout , / # s u i t e s 0 / ) ;
67+ assert . match ( stdout , / # s u i t e s 1 / ) ;
7268} ) ;
7369
7470test ( 'works with --test-skip-pattern' , ( ) => {
@@ -86,7 +82,7 @@ test('works with --test-skip-pattern', () => {
8682 assert . strictEqual ( child . status , 0 ) ;
8783 assert . strictEqual ( child . signal , null ) ;
8884 assert . match ( stdout , / # t e s t s 1 / ) ;
89- assert . match ( stdout , / # s u i t e s 1 / ) ;
85+ assert . match ( stdout , / # s u i t e s 2 / ) ;
9086 assert . match ( stdout , / # p a s s 1 / ) ;
9187 assert . match ( stdout , / o k 1 - s u i t e t w o - t e s t / ) ;
9288} ) ;
0 commit comments