1
1
// Jest Snapshot v1, https://goo.gl/fbAQLP
2
2
3
- exports [` Client console.log clientLogLevel is silent 1` ] = `
3
+ exports [` Client console.log clientLogLevel is silent (default) 1` ] = `
4
4
Array [
5
5
"Hey.",
6
6
"[HMR] Waiting for update signal from WDS...",
7
7
]
8
8
` ;
9
9
10
- exports [` Client console.log hot disabled 1` ] = `
10
+ exports [` Client console.log clientLogLevel is silent (sockjs) 1` ] = `
11
+ Array [
12
+ "Hey.",
13
+ "[HMR] Waiting for update signal from WDS...",
14
+ ]
15
+ ` ;
16
+
17
+ exports [` Client console.log clientLogLevel is silent (ws) 1` ] = `
18
+ Array [
19
+ "Hey.",
20
+ "[HMR] Waiting for update signal from WDS...",
21
+ ]
22
+ ` ;
23
+
24
+ exports [` Client console.log hot disabled (default) 1` ] = `
25
+ Array [
26
+ "Hey.",
27
+ "[WDS] Live Reloading enabled.",
28
+ ]
29
+ ` ;
30
+
31
+ exports [` Client console.log hot disabled (sockjs) 1` ] = `
32
+ Array [
33
+ "Hey.",
34
+ "[WDS] Live Reloading enabled.",
35
+ ]
36
+ ` ;
37
+
38
+ exports [` Client console.log hot disabled (ws) 1` ] = `
11
39
Array [
12
40
"Hey.",
13
41
"[WDS] Live Reloading enabled.",
14
42
]
15
43
` ;
16
44
17
- exports [` Client console.log hot enabled 1` ] = `
45
+ exports [` Client console.log hot enabled (default) 1` ] = `
18
46
Array [
19
47
"Hey.",
20
48
"[HMR] Waiting for update signal from WDS...",
@@ -23,16 +51,94 @@ Array [
23
51
]
24
52
` ;
25
53
26
- exports [` Client console.log liveReload disabled 1` ] = `
54
+ exports [` Client console.log hot enabled (sockjs) 1` ] = `
27
55
Array [
28
56
"Hey.",
29
- "Failed to load resource: the server responded with a status of 404 (Not Found)",
57
+ "[HMR] Waiting for update signal from WDS...",
58
+ "[WDS] Hot Module Replacement enabled.",
59
+ "[WDS] Live Reloading enabled.",
60
+ ]
61
+ ` ;
62
+
63
+ exports [` Client console.log hot enabled (ws) 1` ] = `
64
+ Array [
65
+ "Hey.",
66
+ "[HMR] Waiting for update signal from WDS...",
67
+ "[WDS] Hot Module Replacement enabled.",
68
+ "[WDS] Live Reloading enabled.",
69
+ ]
70
+ ` ;
71
+
72
+ exports [` Client console.log liveReload & hot are disabled (default) 1` ] = `
73
+ Array [
74
+ "Hey.",
75
+ "WebSocket connection to 'ws://localhost:8096/ws' failed: Error during WebSocket handshake: Unexpected response code: 404",
76
+ "WebSocket connection to 'ws://localhost:8096/ws' failed: Error during WebSocket handshake: Unexpected response code: 404",
30
77
"[WDS] Hot Module Replacement & Live Reloading are disabled!",
78
+ ]
79
+ ` ;
80
+
81
+ exports [` Client console.log liveReload & hot are disabled (sockjs) 1` ] = `
82
+ Array [
83
+ "Failed to load resource: the server responded with a status of 404 (Not Found)",
31
84
"Failed to load resource: the server responded with a status of 404 (Not Found)",
85
+ "Hey.",
86
+ "[WDS] Hot Module Replacement & Live Reloading are disabled!",
87
+ ]
88
+ ` ;
89
+
90
+ exports [` Client console.log liveReload & hot are disabled (ws) 1` ] = `
91
+ Array [
92
+ "Hey.",
93
+ "WebSocket connection to 'ws://localhost:8096/ws' failed: Error during WebSocket handshake: Unexpected response code: 404",
94
+ "WebSocket connection to 'ws://localhost:8096/ws' failed: Error during WebSocket handshake: Unexpected response code: 404",
95
+ "[WDS] Hot Module Replacement & Live Reloading are disabled!",
96
+ ]
97
+ ` ;
98
+
99
+ exports [` Client console.log liveReload disabled (default) 1` ] = `
100
+ Array [
101
+ "Hey.",
102
+ "[HMR] Waiting for update signal from WDS...",
103
+ "[WDS] Hot Module Replacement enabled.",
104
+ ]
105
+ ` ;
106
+
107
+ exports [` Client console.log liveReload disabled (sockjs) 1` ] = `
108
+ Array [
109
+ "Hey.",
110
+ "[HMR] Waiting for update signal from WDS...",
111
+ "[WDS] Hot Module Replacement enabled.",
112
+ ]
113
+ ` ;
114
+
115
+ exports [` Client console.log liveReload disabled (ws) 1` ] = `
116
+ Array [
117
+ "Hey.",
118
+ "[HMR] Waiting for update signal from WDS...",
119
+ "[WDS] Hot Module Replacement enabled.",
120
+ ]
121
+ ` ;
122
+
123
+ exports [` Client console.log liveReload enabled (default) 1` ] = `
124
+ Array [
125
+ "Hey.",
126
+ "[HMR] Waiting for update signal from WDS...",
127
+ "[WDS] Hot Module Replacement enabled.",
128
+ "[WDS] Live Reloading enabled.",
129
+ ]
130
+ ` ;
131
+
132
+ exports [` Client console.log liveReload enabled (sockjs) 1` ] = `
133
+ Array [
134
+ "Hey.",
135
+ "[HMR] Waiting for update signal from WDS...",
136
+ "[WDS] Hot Module Replacement enabled.",
137
+ "[WDS] Live Reloading enabled.",
32
138
]
33
139
` ;
34
140
35
- exports [` Client console.log liveReload enabled 1` ] = `
141
+ exports [` Client console.log liveReload enabled (ws) 1` ] = `
36
142
Array [
37
143
"Hey.",
38
144
"[HMR] Waiting for update signal from WDS...",
0 commit comments