@@ -23,11 +23,11 @@ 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 / ) ;
2828 assert . match ( stdout , / o k 1 - s u i t e o n e / ) ;
2929 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 / ) ;
30+ assert . match ( stdout , / o k 1 - s u i t e t w o / ) ;
3131 assert . match ( stdout , / o k 1 - s u i t e t w o - t e s t / ) ;
3232} ) ;
3333
@@ -45,11 +45,11 @@ test('works without --test-only', () => {
4545 assert . strictEqual ( child . status , 0 ) ;
4646 assert . strictEqual ( child . signal , null ) ;
4747 assert . match ( stdout , / # t e s t s 2 / ) ;
48- assert . match ( stdout , / # s u i t e s 2 / ) ;
48+ assert . match ( stdout , / # s u i t e s 4 / ) ;
4949 assert . match ( stdout , / # p a s s 2 / ) ;
5050 assert . match ( stdout , / o k 1 - s u i t e o n e / ) ;
5151 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 / ) ;
52+ assert . match ( stdout , / o k 1 - s u i t e t w o / ) ;
5353 assert . match ( stdout , / o k 1 - s u i t e t w o - t e s t / ) ;
5454} ) ;
5555
@@ -68,7 +68,7 @@ test('works with --test-name-pattern', () => {
6868 assert . strictEqual ( child . status , 0 ) ;
6969 assert . strictEqual ( child . signal , null ) ;
7070 assert . match ( stdout , / # t e s t s 0 / ) ;
71- assert . match ( stdout , / # s u i t e s 0 / ) ;
71+ assert . match ( stdout , / # s u i t e s 1 / ) ;
7272} ) ;
7373
7474test ( 'works with --test-skip-pattern' , ( ) => {
@@ -86,7 +86,7 @@ test('works with --test-skip-pattern', () => {
8686 assert . strictEqual ( child . status , 0 ) ;
8787 assert . strictEqual ( child . signal , null ) ;
8888 assert . match ( stdout , / # t e s t s 1 / ) ;
89- assert . match ( stdout , / # s u i t e s 1 / ) ;
89+ assert . match ( stdout , / # s u i t e s 2 / ) ;
9090 assert . match ( stdout , / # p a s s 1 / ) ;
9191 assert . match ( stdout , / o k 1 - s u i t e t w o - t e s t / ) ;
9292} ) ;
0 commit comments