|
1 | 1 | // Jest Snapshot v1, https://goo.gl/fbAQLP
|
2 | 2 |
|
| 3 | +exports[`host and port should work using "::" host and "auto" port: console messages 1`] = ` |
| 4 | +Array [ |
| 5 | + "[HMR] Waiting for update signal from WDS...", |
| 6 | + "Hey.", |
| 7 | + "[webpack-dev-server] Hot Module Replacement enabled.", |
| 8 | + "[webpack-dev-server] Live Reloading enabled.", |
| 9 | +] |
| 10 | +`; |
| 11 | + |
| 12 | +exports[`host and port should work using "::" host and "auto" port: page errors 1`] = `Array []`; |
| 13 | + |
| 14 | +exports[`host and port should work using "::" host and port as number: console messages 1`] = ` |
| 15 | +Array [ |
| 16 | + "[HMR] Waiting for update signal from WDS...", |
| 17 | + "Hey.", |
| 18 | + "[webpack-dev-server] Hot Module Replacement enabled.", |
| 19 | + "[webpack-dev-server] Live Reloading enabled.", |
| 20 | +] |
| 21 | +`; |
| 22 | + |
| 23 | +exports[`host and port should work using "::" host and port as number: page errors 1`] = `Array []`; |
| 24 | + |
| 25 | +exports[`host and port should work using "::" host and port as string: console messages 1`] = ` |
| 26 | +Array [ |
| 27 | + "[HMR] Waiting for update signal from WDS...", |
| 28 | + "Hey.", |
| 29 | + "[webpack-dev-server] Hot Module Replacement enabled.", |
| 30 | + "[webpack-dev-server] Live Reloading enabled.", |
| 31 | +] |
| 32 | +`; |
| 33 | + |
| 34 | +exports[`host and port should work using "::" host and port as string: page errors 1`] = `Array []`; |
| 35 | + |
| 36 | +exports[`host and port should work using "::1" host and "auto" port: console messages 1`] = ` |
| 37 | +Array [ |
| 38 | + "[HMR] Waiting for update signal from WDS...", |
| 39 | + "Hey.", |
| 40 | + "[webpack-dev-server] Hot Module Replacement enabled.", |
| 41 | + "[webpack-dev-server] Live Reloading enabled.", |
| 42 | +] |
| 43 | +`; |
| 44 | + |
| 45 | +exports[`host and port should work using "::1" host and "auto" port: page errors 1`] = `Array []`; |
| 46 | + |
| 47 | +exports[`host and port should work using "::1" host and port as number: console messages 1`] = ` |
| 48 | +Array [ |
| 49 | + "[HMR] Waiting for update signal from WDS...", |
| 50 | + "Hey.", |
| 51 | + "[webpack-dev-server] Hot Module Replacement enabled.", |
| 52 | + "[webpack-dev-server] Live Reloading enabled.", |
| 53 | +] |
| 54 | +`; |
| 55 | + |
| 56 | +exports[`host and port should work using "::1" host and port as number: page errors 1`] = `Array []`; |
| 57 | + |
| 58 | +exports[`host and port should work using "::1" host and port as string: console messages 1`] = ` |
| 59 | +Array [ |
| 60 | + "[HMR] Waiting for update signal from WDS...", |
| 61 | + "Hey.", |
| 62 | + "[webpack-dev-server] Hot Module Replacement enabled.", |
| 63 | + "[webpack-dev-server] Live Reloading enabled.", |
| 64 | +] |
| 65 | +`; |
| 66 | + |
| 67 | +exports[`host and port should work using "::1" host and port as string: page errors 1`] = `Array []`; |
| 68 | + |
3 | 69 | exports[`host and port should work using "0.0.0.0" host and "auto" port: console messages 1`] = `
|
4 | 70 | Array [
|
5 | 71 | "[HMR] Waiting for update signal from WDS...",
|
@@ -132,6 +198,39 @@ Array [
|
132 | 198 |
|
133 | 199 | exports[`host and port should work using "local-ipv4" host and port as string: page errors 1`] = `Array []`;
|
134 | 200 |
|
| 201 | +exports[`host and port should work using "local-ipv6" host and "auto" port: console messages 1`] = ` |
| 202 | +Array [ |
| 203 | + "[HMR] Waiting for update signal from WDS...", |
| 204 | + "Hey.", |
| 205 | + "[webpack-dev-server] Hot Module Replacement enabled.", |
| 206 | + "[webpack-dev-server] Live Reloading enabled.", |
| 207 | +] |
| 208 | +`; |
| 209 | + |
| 210 | +exports[`host and port should work using "local-ipv6" host and "auto" port: page errors 1`] = `Array []`; |
| 211 | + |
| 212 | +exports[`host and port should work using "local-ipv6" host and port as number: console messages 1`] = ` |
| 213 | +Array [ |
| 214 | + "[HMR] Waiting for update signal from WDS...", |
| 215 | + "Hey.", |
| 216 | + "[webpack-dev-server] Hot Module Replacement enabled.", |
| 217 | + "[webpack-dev-server] Live Reloading enabled.", |
| 218 | +] |
| 219 | +`; |
| 220 | + |
| 221 | +exports[`host and port should work using "local-ipv6" host and port as number: page errors 1`] = `Array []`; |
| 222 | + |
| 223 | +exports[`host and port should work using "local-ipv6" host and port as string: console messages 1`] = ` |
| 224 | +Array [ |
| 225 | + "[HMR] Waiting for update signal from WDS...", |
| 226 | + "Hey.", |
| 227 | + "[webpack-dev-server] Hot Module Replacement enabled.", |
| 228 | + "[webpack-dev-server] Live Reloading enabled.", |
| 229 | +] |
| 230 | +`; |
| 231 | + |
| 232 | +exports[`host and port should work using "local-ipv6" host and port as string: page errors 1`] = `Array []`; |
| 233 | + |
135 | 234 | exports[`host and port should work using "localhost" host and "auto" port: console messages 1`] = `
|
136 | 235 | Array [
|
137 | 236 | "[HMR] Waiting for update signal from WDS...",
|
|
0 commit comments