forked from webpack/webpack-dev-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathclient.test.js.snap.webpack5
More file actions
37 lines (25 loc) · 1.64 KB
/
client.test.js.snap.webpack5
File metadata and controls
37 lines (25 loc) · 1.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Jest Snapshot v1, https://jestjs.io/docs/snapshot-testing
exports[`client option configure client entry should disable client entry: console messages 1`] = `
[
"Failed to load resource: the server responded with a status of 404 (Not Found)",
]
`;
exports[`client option configure client entry should disable client entry: page errors 1`] = `[]`;
exports[`client option configure client entry should disable client entry: response status 1`] = `200`;
exports[`client option configure client entry should disable client entry: webSockets 1`] = `[]`;
exports[`client option default behaviour responds with a 200 status code for / path: console messages 1`] = `
[
"Failed to load resource: the server responded with a status of 404 (Not Found)",
]
`;
exports[`client option default behaviour responds with a 200 status code for / path: page errors 1`] = `[]`;
exports[`client option default behaviour responds with a 200 status code for / path: response status 1`] = `404`;
exports[`client option default behaviour responds with a 200 status code for / path: webSockets 1`] = `[]`;
exports[`client option override client entry should disable client entry: response status 1`] = `200`;
exports[`client option should respect path option responds with a 200 status code for /foo/test/bar path: console messages 1`] = `
[
"Failed to load resource: the server responded with a status of 404 (Not Found)",
]
`;
exports[`client option should respect path option responds with a 200 status code for /foo/test/bar path: page errors 1`] = `[]`;
exports[`client option should respect path option responds with a 200 status code for /foo/test/bar path: webSockets 1`] = `[]`;