@@ -51,7 +51,7 @@ describe('--config-name flag', () => {
5151 expect ( exitCode ) . toBe ( 2 ) ;
5252 expect ( stderr ) . not . toContain ( 'Compilation starting...' ) ;
5353 expect ( stderr ) . not . toContain ( 'Compilation finished' ) ;
54- expect ( stderr ) . toContain ( 'Configuration with the "test" name was not found.' ) ;
54+ expect ( stderr ) . toContain ( 'Configuration with the name "test" was not found.' ) ;
5555 expect ( stdout ) . toBeFalsy ( ) ;
5656 } ) ;
5757
@@ -61,7 +61,7 @@ describe('--config-name flag', () => {
6161 expect ( exitCode ) . toBe ( 2 ) ;
6262 expect ( stderr ) . not . toContain ( 'Compilation starting...' ) ;
6363 expect ( stderr ) . not . toContain ( 'Compilation finished' ) ;
64- expect ( stderr ) . toContain ( 'Configuration with the "test" name was not found.' ) ;
64+ expect ( stderr ) . toContain ( 'Configuration with the name "test" was not found.' ) ;
6565 expect ( stdout ) . toBeFalsy ( ) ;
6666 } ) ;
6767
@@ -75,8 +75,8 @@ describe('--config-name flag', () => {
7575 expect ( exitCode ) . toBe ( 2 ) ;
7676 expect ( stderr ) . not . toContain ( 'Compilation starting...' ) ;
7777 expect ( stderr ) . not . toContain ( 'Compilation finished' ) ;
78- expect ( stderr ) . toContain ( 'Configuration with the "test" name was not found.' ) ;
79- expect ( stderr ) . toContain ( 'Configuration with the "bar" name was not found.' ) ;
78+ expect ( stderr ) . toContain ( 'Configuration with the name "test" was not found.' ) ;
79+ expect ( stderr ) . toContain ( 'Configuration with the name "bar" was not found.' ) ;
8080 expect ( stdout ) . toBeFalsy ( ) ;
8181 } ) ;
8282
@@ -90,8 +90,8 @@ describe('--config-name flag', () => {
9090 expect ( exitCode ) . toBe ( 2 ) ;
9191 expect ( stderr ) . not . toContain ( 'Compilation starting...' ) ;
9292 expect ( stderr ) . not . toContain ( 'Compilation finished' ) ;
93- expect ( stderr ) . not . toContain ( 'Configuration with the "first" name was not found.' ) ;
94- expect ( stderr ) . toContain ( 'Configuration with the "bar" name was not found.' ) ;
93+ expect ( stderr ) . not . toContain ( 'Configuration with the name "first" was not found.' ) ;
94+ expect ( stderr ) . toContain ( 'Configuration with the name "bar" was not found.' ) ;
9595 expect ( stdout ) . toBeFalsy ( ) ;
9696 } ) ;
9797
@@ -129,7 +129,7 @@ describe('--config-name flag', () => {
129129 expect ( exitCode ) . toBe ( 2 ) ;
130130 expect ( stderr ) . not . toContain ( 'Compilation starting...' ) ;
131131 expect ( stderr ) . not . toContain ( 'Compilation finished' ) ;
132- expect ( stderr ) . toContain ( 'Configuration with the "test" name was not found.' ) ;
132+ expect ( stderr ) . toContain ( 'Configuration with the name "test" was not found.' ) ;
133133 expect ( stdout ) . toBeFalsy ( ) ;
134134 } ) ;
135135} ) ;
0 commit comments