You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
exports[`API should work and allow to rerun dev server multiple times: console messages 1`] = `
3
+
exports[`API Invalidate callback should use the default \`noop\` callback when invalidate is called without any callback: console messages 1`] = `
4
4
Array [
5
5
"[HMR] Waiting for update signal from WDS...",
6
6
"Hey.",
@@ -9,7 +9,11 @@ Array [
9
9
]
10
10
`;
11
11
12
-
exports[`API should work and allow to rerun dev server multiple times: console messages 2`] = `
12
+
exports[`API Invalidate callback should use the default \`noop\` callback when invalidate is called without any callback: page errors 1`] = `Array []`;
13
+
14
+
exports[`API Invalidate callback should use the default \`noop\` callback when invalidate is called without any callback: response status 1`] = `200`;
15
+
16
+
exports[`API Invalidate callback should use the provided \`callback\` function: console messages 1`] = `
13
17
Array [
14
18
"[HMR] Waiting for update signal from WDS...",
15
19
"Hey.",
@@ -18,22 +22,24 @@ Array [
18
22
]
19
23
`;
20
24
21
-
exports[`API should work and allow to rerun dev server multiple times: page errors 1`] = `Array []`;
25
+
exports[`API Invalidate callback should use the provided \`callback\` function: page errors 1`] = `Array []`;
22
26
23
-
exports[`API should work and allow to rerun dev server multiple times: page errors 2`] = `Array []`;
27
+
exports[`API Invalidate callback should use the provided \`callback\` function: response status 1`] = `200`;
24
28
25
-
exports[`API should work when using configured manually: console messages 1`] = `
29
+
exports[`API deprecated API should log warning when the "port" and "host" options from options different from arguments ('listen' method): console messages 1`] = `
26
30
Array [
27
31
"[HMR] Waiting for update signal from WDS...",
28
-
"[webpack-dev-server] Hot Module Replacement enabled.",
29
32
"Hey.",
33
+
"[webpack-dev-server] Hot Module Replacement enabled.",
30
34
"[webpack-dev-server] Live Reloading enabled.",
31
35
]
32
36
`;
33
37
34
-
exports[`API should work when using configured manually: page errors 1`] = `Array []`;
38
+
exports[`API deprecated API should log warning when the "port" and "host" options from options different from arguments ('listen' method): page errors 1`] = `Array []`;
35
39
36
-
exports[`API should work with async API: console messages 1`] = `
40
+
exports[`API deprecated API should work with deprecated API ('listen' and 'close' methods): close deprecation log 1`] = `"'close' is deprecated. Please use the async 'stop' or 'stopCallback' method."`;
41
+
42
+
exports[`API deprecated API should work with deprecated API ('listen' and 'close' methods): console messages 1`] = `
37
43
Array [
38
44
"[HMR] Waiting for update signal from WDS...",
39
45
"Hey.",
@@ -42,9 +48,11 @@ Array [
42
48
]
43
49
`;
44
50
45
-
exports[`API should work with async API: page errors 1`] = `Array []`;
51
+
exports[`API deprecated API should work with deprecated API ('listen' and 'close' methods): listen deprecation log 1`] = `"'listen' is deprecated. Please use the async 'start' or 'startCallback' method."`;
52
+
53
+
exports[`API deprecated API should work with deprecated API ('listen' and 'close' methods): page errors 1`] = `Array []`;
46
54
47
-
exports[`API should work with callback API: console messages 1`] = `
55
+
exports[`API deprecated API should work with deprecated API (only compiler in constructor): console messages 1`] = `
48
56
Array [
49
57
"[HMR] Waiting for update signal from WDS...",
50
58
"Hey.",
@@ -53,11 +61,11 @@ Array [
53
61
]
54
62
`;
55
63
56
-
exports[`API should work with callback API: page errors 1`] = `Array []`;
64
+
exports[`API deprecated API should work with deprecated API (only compiler in constructor): deprecation log 1`] = `"Using 'compiler' as the first argument is deprecated. Please use 'options' as the first argument and 'compiler' as the second argument."`;
57
65
58
-
exports[`API should work with deprecated API ('listen' and 'close' methods): close deprecation log 1`] = `"'close' is deprecated. Please use the async 'stop' or 'stopCallback' method."`;
66
+
exports[`API deprecated API should work with deprecated API (only compiler in constructor): page errors 1`] = `Array []`;
59
67
60
-
exports[`API should work with deprecated API ('listen' and 'close' methods): console messages 1`] = `
68
+
exports[`API deprecated API should work with deprecated API (the order of the arguments in the constructor): console messages 1`] = `
61
69
Array [
62
70
"[HMR] Waiting for update signal from WDS...",
63
71
"Hey.",
@@ -66,11 +74,20 @@ Array [
66
74
]
67
75
`;
68
76
69
-
exports[`API should work with deprecated API ('listen' and 'close' methods): listen deprecation log 1`] = `"'listen' is deprecated. Please use the async 'start' or 'startCallback' method."`;
77
+
exports[`API deprecated API should work with deprecated API (the order of the arguments in the constructor): deprecation log 1`] = `"Using 'compiler' as the first argument is deprecated. Please use 'options' as the first argument and 'compiler' as the second argument."`;
70
78
71
-
exports[`API should work with deprecated API ('listen' and 'close' methods): page errors 1`] = `Array []`;
79
+
exports[`API deprecated API should work with deprecated API (the order of the arguments in the constructor): page errors 1`] = `Array []`;
80
+
81
+
exports[`API latest async API should work and allow to rerun dev server multiple times: console messages 1`] = `
82
+
Array [
83
+
"[HMR] Waiting for update signal from WDS...",
84
+
"Hey.",
85
+
"[webpack-dev-server] Hot Module Replacement enabled.",
86
+
"[webpack-dev-server] Live Reloading enabled.",
87
+
]
88
+
`;
72
89
73
-
exports[`API should work with deprecated API (only compiler in constructor): console messages 1`] = `
90
+
exports[`API latest async API should work and allow to rerun dev server multiple times: console messages 2`] = `
74
91
Array [
75
92
"[HMR] Waiting for update signal from WDS...",
76
93
"Hey.",
@@ -79,11 +96,22 @@ Array [
79
96
]
80
97
`;
81
98
82
-
exports[`API should work with deprecated API (only compiler in constructor): deprecation log 1`] = `"Using 'compiler' as the first argument is deprecated. Please use 'options' as the first argument and 'compiler' as the second argument."`;
99
+
exports[`API latest async API should work and allow to rerun dev server multiple times: page errors 1`] = `Array []`;
83
100
84
-
exports[`API should work with deprecated API (only compiler in constructor): page errors 1`] = `Array []`;
101
+
exports[`API latest async API should work and allow to rerun dev server multiple times: page errors 2`] = `Array []`;
85
102
86
-
exports[`API should work with deprecated API (the order of the arguments in the constructor): console messages 1`] = `
103
+
exports[`API latest async API should work when using configured manually: console messages 1`] = `
104
+
Array [
105
+
"[HMR] Waiting for update signal from WDS...",
106
+
"[webpack-dev-server] Hot Module Replacement enabled.",
107
+
"Hey.",
108
+
"[webpack-dev-server] Live Reloading enabled.",
109
+
]
110
+
`;
111
+
112
+
exports[`API latest async API should work when using configured manually: page errors 1`] = `Array []`;
113
+
114
+
exports[`API latest async API should work with async API: console messages 1`] = `
87
115
Array [
88
116
"[HMR] Waiting for update signal from WDS...",
89
117
"Hey.",
@@ -92,6 +120,15 @@ Array [
92
120
]
93
121
`;
94
122
95
-
exports[`API should work with deprecated API (the order of the arguments in the constructor): deprecation log 1`] = `"Using 'compiler' as the first argument is deprecated. Please use 'options' as the first argument and 'compiler' as the second argument."`;
123
+
exports[`API latest async API should work with async API: page errors 1`] = `Array []`;
124
+
125
+
exports[`API latest async API should work with callback API: console messages 1`] = `
126
+
Array [
127
+
"[HMR] Waiting for update signal from WDS...",
128
+
"Hey.",
129
+
"[webpack-dev-server] Hot Module Replacement enabled.",
130
+
"[webpack-dev-server] Live Reloading enabled.",
131
+
]
132
+
`;
96
133
97
-
exports[`API should work with deprecated API (the order of the arguments in the constructor): page errors 1`] = `Array []`;
134
+
exports[`API latest async API should work with callback API: page errors 1`] = `Array []`;
exports[`API should work and allow to rerun dev server multiple times: console messages 1`] = `
3
+
exports[`API Invalidate callback should use the default \`noop\` callback when invalidate is called without any callback: console messages 1`] = `
4
4
Array [
5
5
"[HMR] Waiting for update signal from WDS...",
6
6
"Hey.",
@@ -9,7 +9,11 @@ Array [
9
9
]
10
10
`;
11
11
12
-
exports[`API should work and allow to rerun dev server multiple times: console messages 2`] = `
12
+
exports[`API Invalidate callback should use the default \`noop\` callback when invalidate is called without any callback: page errors 1`] = `Array []`;
13
+
14
+
exports[`API Invalidate callback should use the default \`noop\` callback when invalidate is called without any callback: response status 1`] = `200`;
15
+
16
+
exports[`API Invalidate callback should use the provided \`callback\` function: console messages 1`] = `
13
17
Array [
14
18
"[HMR] Waiting for update signal from WDS...",
15
19
"Hey.",
@@ -18,22 +22,24 @@ Array [
18
22
]
19
23
`;
20
24
21
-
exports[`API should work and allow to rerun dev server multiple times: page errors 1`] = `Array []`;
25
+
exports[`API Invalidate callback should use the provided \`callback\` function: page errors 1`] = `Array []`;
22
26
23
-
exports[`API should work and allow to rerun dev server multiple times: page errors 2`] = `Array []`;
27
+
exports[`API Invalidate callback should use the provided \`callback\` function: response status 1`] = `200`;
24
28
25
-
exports[`API should work when using configured manually: console messages 1`] = `
29
+
exports[`API deprecated API should log warning when the "port" and "host" options from options different from arguments ('listen' method): console messages 1`] = `
26
30
Array [
27
31
"[HMR] Waiting for update signal from WDS...",
28
-
"[webpack-dev-server] Hot Module Replacement enabled.",
29
32
"Hey.",
33
+
"[webpack-dev-server] Hot Module Replacement enabled.",
30
34
"[webpack-dev-server] Live Reloading enabled.",
31
35
]
32
36
`;
33
37
34
-
exports[`API should work when using configured manually: page errors 1`] = `Array []`;
38
+
exports[`API deprecated API should log warning when the "port" and "host" options from options different from arguments ('listen' method): page errors 1`] = `Array []`;
35
39
36
-
exports[`API should work with async API: console messages 1`] = `
40
+
exports[`API deprecated API should work with deprecated API ('listen' and 'close' methods): close deprecation log 1`] = `"'close' is deprecated. Please use the async 'stop' or 'stopCallback' method."`;
41
+
42
+
exports[`API deprecated API should work with deprecated API ('listen' and 'close' methods): console messages 1`] = `
37
43
Array [
38
44
"[HMR] Waiting for update signal from WDS...",
39
45
"Hey.",
@@ -42,9 +48,11 @@ Array [
42
48
]
43
49
`;
44
50
45
-
exports[`API should work with async API: page errors 1`] = `Array []`;
51
+
exports[`API deprecated API should work with deprecated API ('listen' and 'close' methods): listen deprecation log 1`] = `"'listen' is deprecated. Please use the async 'start' or 'startCallback' method."`;
52
+
53
+
exports[`API deprecated API should work with deprecated API ('listen' and 'close' methods): page errors 1`] = `Array []`;
46
54
47
-
exports[`API should work with callback API: console messages 1`] = `
55
+
exports[`API deprecated API should work with deprecated API (only compiler in constructor): console messages 1`] = `
48
56
Array [
49
57
"[HMR] Waiting for update signal from WDS...",
50
58
"Hey.",
@@ -53,11 +61,11 @@ Array [
53
61
]
54
62
`;
55
63
56
-
exports[`API should work with callback API: page errors 1`] = `Array []`;
64
+
exports[`API deprecated API should work with deprecated API (only compiler in constructor): deprecation log 1`] = `"Using 'compiler' as the first argument is deprecated. Please use 'options' as the first argument and 'compiler' as the second argument."`;
57
65
58
-
exports[`API should work with deprecated API ('listen' and 'close' methods): close deprecation log 1`] = `"'close' is deprecated. Please use the async 'stop' or 'stopCallback' method."`;
66
+
exports[`API deprecated API should work with deprecated API (only compiler in constructor): page errors 1`] = `Array []`;
59
67
60
-
exports[`API should work with deprecated API ('listen' and 'close' methods): console messages 1`] = `
68
+
exports[`API deprecated API should work with deprecated API (the order of the arguments in the constructor): console messages 1`] = `
61
69
Array [
62
70
"[HMR] Waiting for update signal from WDS...",
63
71
"Hey.",
@@ -66,11 +74,20 @@ Array [
66
74
]
67
75
`;
68
76
69
-
exports[`API should work with deprecated API ('listen' and 'close' methods): listen deprecation log 1`] = `"'listen' is deprecated. Please use the async 'start' or 'startCallback' method."`;
77
+
exports[`API deprecated API should work with deprecated API (the order of the arguments in the constructor): deprecation log 1`] = `"Using 'compiler' as the first argument is deprecated. Please use 'options' as the first argument and 'compiler' as the second argument."`;
70
78
71
-
exports[`API should work with deprecated API ('listen' and 'close' methods): page errors 1`] = `Array []`;
79
+
exports[`API deprecated API should work with deprecated API (the order of the arguments in the constructor): page errors 1`] = `Array []`;
80
+
81
+
exports[`API latest async API should work and allow to rerun dev server multiple times: console messages 1`] = `
82
+
Array [
83
+
"[HMR] Waiting for update signal from WDS...",
84
+
"Hey.",
85
+
"[webpack-dev-server] Hot Module Replacement enabled.",
86
+
"[webpack-dev-server] Live Reloading enabled.",
87
+
]
88
+
`;
72
89
73
-
exports[`API should work with deprecated API (only compiler in constructor): console messages 1`] = `
90
+
exports[`API latest async API should work and allow to rerun dev server multiple times: console messages 2`] = `
74
91
Array [
75
92
"[HMR] Waiting for update signal from WDS...",
76
93
"Hey.",
@@ -79,11 +96,22 @@ Array [
79
96
]
80
97
`;
81
98
82
-
exports[`API should work with deprecated API (only compiler in constructor): deprecation log 1`] = `"Using 'compiler' as the first argument is deprecated. Please use 'options' as the first argument and 'compiler' as the second argument."`;
99
+
exports[`API latest async API should work and allow to rerun dev server multiple times: page errors 1`] = `Array []`;
83
100
84
-
exports[`API should work with deprecated API (only compiler in constructor): page errors 1`] = `Array []`;
101
+
exports[`API latest async API should work and allow to rerun dev server multiple times: page errors 2`] = `Array []`;
85
102
86
-
exports[`API should work with deprecated API (the order of the arguments in the constructor): console messages 1`] = `
103
+
exports[`API latest async API should work when using configured manually: console messages 1`] = `
104
+
Array [
105
+
"[HMR] Waiting for update signal from WDS...",
106
+
"[webpack-dev-server] Hot Module Replacement enabled.",
107
+
"Hey.",
108
+
"[webpack-dev-server] Live Reloading enabled.",
109
+
]
110
+
`;
111
+
112
+
exports[`API latest async API should work when using configured manually: page errors 1`] = `Array []`;
113
+
114
+
exports[`API latest async API should work with async API: console messages 1`] = `
87
115
Array [
88
116
"[HMR] Waiting for update signal from WDS...",
89
117
"Hey.",
@@ -92,6 +120,15 @@ Array [
92
120
]
93
121
`;
94
122
95
-
exports[`API should work with deprecated API (the order of the arguments in the constructor): deprecation log 1`] = `"Using 'compiler' as the first argument is deprecated. Please use 'options' as the first argument and 'compiler' as the second argument."`;
123
+
exports[`API latest async API should work with async API: page errors 1`] = `Array []`;
124
+
125
+
exports[`API latest async API should work with callback API: console messages 1`] = `
126
+
Array [
127
+
"[HMR] Waiting for update signal from WDS...",
128
+
"Hey.",
129
+
"[webpack-dev-server] Hot Module Replacement enabled.",
130
+
"[webpack-dev-server] Live Reloading enabled.",
131
+
]
132
+
`;
96
133
97
-
exports[`API should work with deprecated API (the order of the arguments in the constructor): page errors 1`] = `Array []`;
134
+
exports[`API latest async API should work with callback API: page errors 1`] = `Array []`;
0 commit comments