@@ -4,6 +4,7 @@ exports[`normalizeOptions client host and port should set correct options 1`] =
4
4
Object {
5
5
"client": Object {
6
6
"host": "my.host",
7
+ "hotEntry": true,
7
8
"overlay": true,
8
9
"path": "/ws",
9
10
"port": 9000,
@@ -36,6 +37,7 @@ Object {
36
37
exports[`normalizeOptions client path should set correct options 1`] = `
37
38
Object {
38
39
"client": Object {
40
+ "hotEntry": true,
39
41
"overlay": true,
40
42
"path": "/custom/path",
41
43
},
@@ -67,6 +69,7 @@ Object {
67
69
exports[`normalizeOptions client path without leading/ending slashes should set correct options 1`] = `
68
70
Object {
69
71
"client": Object {
72
+ "hotEntry": true,
70
73
"overlay": true,
71
74
"path": "/custom/path",
72
75
},
@@ -98,6 +101,7 @@ Object {
98
101
exports[`normalizeOptions dev is set should set correct options 1`] = `
99
102
Object {
100
103
"client": Object {
104
+ "hotEntry": true,
101
105
"overlay": true,
102
106
"path": "/ws",
103
107
},
@@ -131,6 +135,7 @@ Object {
131
135
exports[`normalizeOptions firewall is set should set correct options 1`] = `
132
136
Object {
133
137
"client": Object {
138
+ "hotEntry": true,
134
139
"overlay": true,
135
140
"path": "/ws",
136
141
},
@@ -162,6 +167,7 @@ Object {
162
167
exports[`normalizeOptions hot is false should set correct options 1`] = `
163
168
Object {
164
169
"client": Object {
170
+ "hotEntry": false,
165
171
"overlay": true,
166
172
"path": "/ws",
167
173
},
@@ -193,6 +199,7 @@ Object {
193
199
exports[`normalizeOptions hot is only should set correct options 1`] = `
194
200
Object {
195
201
"client": Object {
202
+ "hotEntry": "only",
196
203
"overlay": true,
197
204
"path": "/ws",
198
205
},
@@ -224,6 +231,7 @@ Object {
224
231
exports[`normalizeOptions hot is true should set correct options 1`] = `
225
232
Object {
226
233
"client": Object {
234
+ "hotEntry": true,
227
235
"overlay": true,
228
236
"path": "/ws",
229
237
},
@@ -255,6 +263,7 @@ Object {
255
263
exports[`normalizeOptions liveReload is false should set correct options 1`] = `
256
264
Object {
257
265
"client": Object {
266
+ "hotEntry": true,
258
267
"overlay": true,
259
268
"path": "/ws",
260
269
},
@@ -286,6 +295,7 @@ Object {
286
295
exports[`normalizeOptions liveReload is true should set correct options 1`] = `
287
296
Object {
288
297
"client": Object {
298
+ "hotEntry": true,
289
299
"overlay": true,
290
300
"path": "/ws",
291
301
},
@@ -317,6 +327,7 @@ Object {
317
327
exports[`normalizeOptions multi compiler watchOptions is set should set correct options 1`] = `
318
328
Object {
319
329
"client": Object {
330
+ "hotEntry": true,
320
331
"overlay": true,
321
332
"path": "/ws",
322
333
},
@@ -350,6 +361,7 @@ Object {
350
361
exports[`normalizeOptions no options should set correct options 1`] = `
351
362
Object {
352
363
"client": Object {
364
+ "hotEntry": true,
353
365
"overlay": true,
354
366
"path": "/ws",
355
367
},
@@ -381,6 +393,7 @@ Object {
381
393
exports[`normalizeOptions single compiler watchOptions is object should set correct options 1`] = `
382
394
Object {
383
395
"client": Object {
396
+ "hotEntry": true,
384
397
"overlay": true,
385
398
"path": "/ws",
386
399
},
@@ -414,6 +427,7 @@ Object {
414
427
exports[`normalizeOptions single compiler watchOptions is object with static watch overriding it should set correct options 1`] = `
415
428
Object {
416
429
"client": Object {
430
+ "hotEntry": true,
417
431
"overlay": true,
418
432
"path": "/ws",
419
433
},
@@ -447,6 +461,7 @@ Object {
447
461
exports[`normalizeOptions single compiler watchOptions is object with static watch true should set correct options 1`] = `
448
462
Object {
449
463
"client": Object {
464
+ "hotEntry": true,
450
465
"overlay": true,
451
466
"path": "/ws",
452
467
},
@@ -480,6 +495,7 @@ Object {
480
495
exports[`normalizeOptions single compiler watchOptions is object with watch false should set correct options 1`] = `
481
496
Object {
482
497
"client": Object {
498
+ "hotEntry": true,
483
499
"overlay": true,
484
500
"path": "/ws",
485
501
},
@@ -511,6 +527,7 @@ Object {
511
527
exports[`normalizeOptions static is an array of static objects should set correct options 1`] = `
512
528
Object {
513
529
"client": Object {
530
+ "hotEntry": true,
514
531
"overlay": true,
515
532
"path": "/ws",
516
533
},
@@ -553,6 +570,7 @@ Object {
553
570
exports[`normalizeOptions static is an array of strings and static objects should set correct options 1`] = `
554
571
Object {
555
572
"client": Object {
573
+ "hotEntry": true,
556
574
"overlay": true,
557
575
"path": "/ws",
558
576
},
@@ -595,6 +613,7 @@ Object {
595
613
exports[`normalizeOptions static is an array of strings should set correct options 1`] = `
596
614
Object {
597
615
"client": Object {
616
+ "hotEntry": true,
598
617
"overlay": true,
599
618
"path": "/ws",
600
619
},
@@ -637,6 +656,7 @@ Object {
637
656
exports[`normalizeOptions static is an object should set correct options 1`] = `
638
657
Object {
639
658
"client": Object {
659
+ "hotEntry": true,
640
660
"overlay": true,
641
661
"path": "/ws",
642
662
},
@@ -668,6 +688,7 @@ Object {
668
688
exports[`normalizeOptions static is false should set correct options 1`] = `
669
689
Object {
670
690
"client": Object {
691
+ "hotEntry": true,
671
692
"overlay": true,
672
693
"path": "/ws",
673
694
},
@@ -687,6 +708,7 @@ Object {
687
708
exports[`normalizeOptions static is string should set correct options 1`] = `
688
709
Object {
689
710
"client": Object {
711
+ "hotEntry": true,
690
712
"overlay": true,
691
713
"path": "/ws",
692
714
},
@@ -718,6 +740,7 @@ Object {
718
740
exports[`normalizeOptions static is true should set correct options 1`] = `
719
741
Object {
720
742
"client": Object {
743
+ "hotEntry": true,
721
744
"overlay": true,
722
745
"path": "/ws",
723
746
},
@@ -749,6 +772,7 @@ Object {
749
772
exports[`normalizeOptions static publicPath is a string should set correct options 1`] = `
750
773
Object {
751
774
"client": Object {
775
+ "hotEntry": true,
752
776
"overlay": true,
753
777
"path": "/ws",
754
778
},
@@ -780,6 +804,7 @@ Object {
780
804
exports[`normalizeOptions static publicPath is an array should set correct options 1`] = `
781
805
Object {
782
806
"client": Object {
807
+ "hotEntry": true,
783
808
"overlay": true,
784
809
"path": "/ws",
785
810
},
@@ -812,6 +837,7 @@ Object {
812
837
exports[`normalizeOptions static serveIndex is an object should set correct options 1`] = `
813
838
Object {
814
839
"client": Object {
840
+ "hotEntry": true,
815
841
"overlay": true,
816
842
"path": "/ws",
817
843
},
@@ -843,6 +869,7 @@ Object {
843
869
exports[`normalizeOptions static serveIndex is false should set correct options 1`] = `
844
870
Object {
845
871
"client": Object {
872
+ "hotEntry": true,
846
873
"overlay": true,
847
874
"path": "/ws",
848
875
},
@@ -872,6 +899,7 @@ Object {
872
899
exports[`normalizeOptions static serveIndex is true should set correct options 1`] = `
873
900
Object {
874
901
"client": Object {
902
+ "hotEntry": true,
875
903
"overlay": true,
876
904
"path": "/ws",
877
905
},
@@ -903,6 +931,7 @@ Object {
903
931
exports[`normalizeOptions static watch is an object should set correct options 1`] = `
904
932
Object {
905
933
"client": Object {
934
+ "hotEntry": true,
906
935
"overlay": true,
907
936
"path": "/ws",
908
937
},
@@ -936,6 +965,7 @@ Object {
936
965
exports[`normalizeOptions static watch is false should set correct options 1`] = `
937
966
Object {
938
967
"client": Object {
968
+ "hotEntry": true,
939
969
"overlay": true,
940
970
"path": "/ws",
941
971
},
@@ -967,6 +997,7 @@ Object {
967
997
exports[`normalizeOptions static watch is true should set correct options 1`] = `
968
998
Object {
969
999
"client": Object {
1000
+ "hotEntry": true,
970
1001
"overlay": true,
971
1002
"path": "/ws",
972
1003
},
@@ -998,6 +1029,7 @@ Object {
998
1029
exports[`normalizeOptions transportMode custom client path should set correct options 1`] = `
999
1030
Object {
1000
1031
"client": Object {
1032
+ "hotEntry": true,
1001
1033
"overlay": true,
1002
1034
"path": "/ws",
1003
1035
},
@@ -1029,6 +1061,7 @@ Object {
1029
1061
exports[`normalizeOptions transportMode custom server class should set correct options 1`] = `
1030
1062
Object {
1031
1063
"client": Object {
1064
+ "hotEntry": true,
1032
1065
"overlay": true,
1033
1066
"path": "/ws",
1034
1067
},
@@ -1060,6 +1093,7 @@ Object {
1060
1093
exports[`normalizeOptions transportMode custom server path should set correct options 1`] = `
1061
1094
Object {
1062
1095
"client": Object {
1096
+ "hotEntry": true,
1063
1097
"overlay": true,
1064
1098
"path": "/ws",
1065
1099
},
@@ -1091,6 +1125,7 @@ Object {
1091
1125
exports[`normalizeOptions transportMode sockjs string should set correct options 1`] = `
1092
1126
Object {
1093
1127
"client": Object {
1128
+ "hotEntry": true,
1094
1129
"overlay": true,
1095
1130
"path": "/ws",
1096
1131
},
@@ -1122,6 +1157,7 @@ Object {
1122
1157
exports[`normalizeOptions transportMode ws object should set correct options 1`] = `
1123
1158
Object {
1124
1159
"client": Object {
1160
+ "hotEntry": true,
1125
1161
"overlay": true,
1126
1162
"path": "/ws",
1127
1163
},
@@ -1153,6 +1189,7 @@ Object {
1153
1189
exports[`normalizeOptions transportMode ws string should set correct options 1`] = `
1154
1190
Object {
1155
1191
"client": Object {
1192
+ "hotEntry": true,
1156
1193
"overlay": true,
1157
1194
"path": "/ws",
1158
1195
},
0 commit comments