@@ -44,7 +44,7 @@ it('integration : module-errors', async () => {
4444 const logs = await executeAndGetLogs ( './fixtures/module-errors/webpack.config.js' ) ;
4545
4646 expect ( logs ) . toEqual ( [
47- ' ERROR Failed to compile with 2 errors' ,
47+ 'ERROR Failed to compile with 2 errors' ,
4848 '' ,
4949 'These dependencies were not found in node_modules:' ,
5050 '' ,
@@ -60,15 +60,14 @@ it('integration : should display eslint warnings', async () => {
6060 const logs = await executeAndGetLogs ( './fixtures/eslint-warnings/webpack.config.js' ) ;
6161
6262 expect ( logs ) . toEqual ( [
63- ' WARNING Compiled with 1 warnings' ,
63+ 'WARNING Compiled with 1 warnings' ,
6464 '' ,
65- ' warning in ./test/fixtures/eslint-warnings/index.js' ,
65+ 'warning in ./test/fixtures/eslint-warnings/index.js' ,
6666 '' ,
6767 `${ __dirname } /fixtures/eslint-warnings/index.js
6868 1:7 warning 'unused' is assigned a value but never used no-unused-vars
6969
70- ✖ 1 problem (0 errors, 1 warning)
71- ` ,
70+ ✖ 1 problem (0 errors, 1 warning)` ,
7271 '' ,
7372 'You may use special comments to disable some warnings.' ,
7473 'Use // eslint-disable-next-line to ignore the next line.' ,
@@ -81,11 +80,11 @@ it('integration : babel syntax error', async () => {
8180 const logs = await executeAndGetLogs ( './fixtures/babel-syntax/webpack.config' ) ;
8281
8382 expect ( logs ) . toEqual ( [
84- ' ERROR Failed to compile with 1 errors' ,
83+ 'ERROR Failed to compile with 1 errors' ,
8584 '' ,
86- ' error in ./test/fixtures/babel-syntax/index.js' ,
85+ 'error in ./test/fixtures/babel-syntax/index.js' ,
8786 '' ,
88- `SyntaxError : Unexpected token (5:11)
87+ `Syntax Error : Unexpected token (5:11)
8988
9089 3 |${ ' ' }
9190 4 | render() {
@@ -113,7 +112,7 @@ it('integration : webpack multi compiler : module-errors', async () => {
113112 const logs = await executeAndGetLogs ( './fixtures/multi-compiler-module-errors/webpack.config' , globalPlugins ) ;
114113
115114 expect ( logs ) . toEqual ( [
116- ' ERROR Failed to compile with 2 errors' ,
115+ 'ERROR Failed to compile with 2 errors' ,
117116 '' ,
118117 'These dependencies were not found in node_modules:' ,
119118 '' ,
0 commit comments