File tree 2 files changed +4
-7
lines changed
2 files changed +4
-7
lines changed Original file line number Diff line number Diff line change @@ -37,9 +37,7 @@ describe('CLI', () => {
37
37
)
38
38
. then ( ( output ) => {
39
39
expect ( output . exitCode ) . toEqual ( 0 ) ;
40
- expect ( output . stderr ) . toContain (
41
- 'webpack/runtime/hot module replacement'
42
- ) ;
40
+ expect ( output . stderr ) . toContain ( 'webpack/hot/dev-server.js' ) ;
43
41
done ( ) ;
44
42
} )
45
43
. catch ( done ) ;
@@ -52,9 +50,7 @@ describe('CLI', () => {
52
50
)
53
51
. then ( ( output ) => {
54
52
expect ( output . exitCode ) . toEqual ( 0 ) ;
55
- expect ( output . stderr ) . not . toContain (
56
- 'webpack/runtime/hot module replacement'
57
- ) ;
53
+ expect ( output . stderr ) . not . toContain ( 'webpack/hot/dev-server.js' ) ;
58
54
done ( ) ;
59
55
} )
60
56
. catch ( done ) ;
Original file line number Diff line number Diff line change 1
1
'use strict' ;
2
2
3
3
module . exports = {
4
- stats : 'verbose ' ,
4
+ entry : './foo.js ' ,
5
5
mode : 'development' ,
6
+ stats : 'detailed' ,
6
7
} ;
You can’t perform that action at this time.
0 commit comments