@@ -49,7 +49,6 @@ describe("overlay", () => {
49
49
new WarningPlugin ( ) . apply ( compiler ) ;
50
50
51
51
const devServerOptions = {
52
- host : "0.0.0.0" ,
53
52
port,
54
53
} ;
55
54
const server = new Server ( devServerOptions , compiler ) ;
@@ -86,7 +85,6 @@ describe("overlay", () => {
86
85
new ErrorPlugin ( ) . apply ( compiler ) ;
87
86
88
87
const devServerOptions = {
89
- host : "0.0.0.0" ,
90
88
port,
91
89
} ;
92
90
const server = new Server ( devServerOptions , compiler ) ;
@@ -127,7 +125,6 @@ describe("overlay", () => {
127
125
new ErrorPlugin ( ) . apply ( compiler ) ;
128
126
129
127
const devServerOptions = {
130
- host : "0.0.0.0" ,
131
128
port,
132
129
} ;
133
130
const server = new Server ( devServerOptions , compiler ) ;
@@ -166,7 +163,6 @@ describe("overlay", () => {
166
163
) ;
167
164
168
165
const devServerOptions = {
169
- host : "0.0.0.0" ,
170
166
port,
171
167
} ;
172
168
const server = new Server ( devServerOptions , compiler ) ;
@@ -204,7 +200,6 @@ describe("overlay", () => {
204
200
new ErrorPlugin ( "<strong>strong</strong>" ) . apply ( compiler ) ;
205
201
206
202
const devServerOptions = {
207
- host : "0.0.0.0" ,
208
203
port,
209
204
} ;
210
205
const server = new Server ( devServerOptions , compiler ) ;
@@ -238,7 +233,6 @@ describe("overlay", () => {
238
233
it ( "should not show initially, then show on an error, then hide on fix" , async ( ) => {
239
234
const compiler = webpack ( config ) ;
240
235
const devServerOptions = {
241
- host : "0.0.0.0" ,
242
236
port,
243
237
} ;
244
238
const server = new Server ( devServerOptions , compiler ) ;
@@ -305,7 +299,6 @@ describe("overlay", () => {
305
299
it ( "should not show initially, then show on an error, then show other error, then hide on fix" , async ( ) => {
306
300
const compiler = webpack ( config ) ;
307
301
const devServerOptions = {
308
- host : "0.0.0.0" ,
309
302
port,
310
303
} ;
311
304
const server = new Server ( devServerOptions , compiler ) ;
@@ -392,7 +385,6 @@ describe("overlay", () => {
392
385
it ( "should not show initially, then show on an error and allow to close" , async ( ) => {
393
386
const compiler = webpack ( config ) ;
394
387
const devServerOptions = {
395
- host : "0.0.0.0" ,
396
388
port,
397
389
} ;
398
390
const server = new Server ( devServerOptions , compiler ) ;
@@ -470,7 +462,6 @@ describe("overlay", () => {
470
462
new WarningPlugin ( ) . apply ( compiler ) ;
471
463
472
464
const devServerOptions = {
473
- host : "0.0.0.0" ,
474
465
port,
475
466
client : {
476
467
overlay : false ,
@@ -504,7 +495,6 @@ describe("overlay", () => {
504
495
new WarningPlugin ( ) . apply ( compiler ) ;
505
496
506
497
const devServerOptions = {
507
- host : "0.0.0.0" ,
508
498
port,
509
499
client : {
510
500
overlay : {
@@ -540,7 +530,6 @@ describe("overlay", () => {
540
530
new WarningPlugin ( ) . apply ( compiler ) ;
541
531
542
532
const devServerOptions = {
543
- host : "0.0.0.0" ,
544
533
port,
545
534
client : {
546
535
overlay : true ,
@@ -580,7 +569,6 @@ describe("overlay", () => {
580
569
new WarningPlugin ( ) . apply ( compiler ) ;
581
570
582
571
const devServerOptions = {
583
- host : "0.0.0.0" ,
584
572
port,
585
573
client : {
586
574
overlay : {
@@ -622,7 +610,6 @@ describe("overlay", () => {
622
610
new WarningPlugin ( ) . apply ( compiler ) ;
623
611
624
612
const devServerOptions = {
625
- host : "0.0.0.0" ,
626
613
port,
627
614
client : {
628
615
overlay : {
@@ -664,7 +651,6 @@ describe("overlay", () => {
664
651
new ErrorPlugin ( ) . apply ( compiler ) ;
665
652
666
653
const devServerOptions = {
667
- host : "0.0.0.0" ,
668
654
port,
669
655
client : {
670
656
overlay : false ,
@@ -698,7 +684,6 @@ describe("overlay", () => {
698
684
new ErrorPlugin ( ) . apply ( compiler ) ;
699
685
700
686
const devServerOptions = {
701
- host : "0.0.0.0" ,
702
687
port,
703
688
client : {
704
689
overlay : {
@@ -734,7 +719,6 @@ describe("overlay", () => {
734
719
new ErrorPlugin ( ) . apply ( compiler ) ;
735
720
736
721
const devServerOptions = {
737
- host : "0.0.0.0" ,
738
722
port,
739
723
client : {
740
724
overlay : true ,
@@ -774,7 +758,6 @@ describe("overlay", () => {
774
758
new ErrorPlugin ( ) . apply ( compiler ) ;
775
759
776
760
const devServerOptions = {
777
- host : "0.0.0.0" ,
778
761
port,
779
762
client : {
780
763
overlay : {
@@ -816,7 +799,6 @@ describe("overlay", () => {
816
799
new WarningPlugin ( ) . apply ( compiler ) ;
817
800
818
801
const devServerOptions = {
819
- host : "0.0.0.0" ,
820
802
port,
821
803
client : {
822
804
overlay : {
0 commit comments