-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Expand file tree
/
Copy pathapi-plugin.test.js.snap.webpack5
More file actions
47 lines (40 loc) · 1.48 KB
/
Copy pathapi-plugin.test.js.snap.webpack5
File metadata and controls
47 lines (40 loc) · 1.48 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
38
39
40
41
42
43
44
45
46
47
exports[`API (plugin) > MultiCompiler > should work with plugin API 1`] = `
[
"[webpack-dev-server] Server started: Hot Module Replacement enabled, Live Reloading enabled, Progress disabled, Overlay enabled.",
"[HMR] Waiting for update signal from WDS...",
"one",
]
`;
exports[`API (plugin) > MultiCompiler > should work with plugin API 2`] = `
[]
`;
exports[`API (plugin) > plugin in webpack config > should work when added to webpack config plugins array 1`] = `
[
"[webpack-dev-server] Server started: Hot Module Replacement enabled, Live Reloading enabled, Progress disabled, Overlay enabled.",
"[HMR] Waiting for update signal from WDS...",
"Hey.",
]
`;
exports[`API (plugin) > plugin in webpack config > should work when added to webpack config plugins array 2`] = `
[]
`;
exports[`API (plugin) > plugin in webpack config > should work with output.clean: true 1`] = `
[
"[webpack-dev-server] Server started: Hot Module Replacement enabled, Live Reloading enabled, Progress disabled, Overlay enabled.",
"[HMR] Waiting for update signal from WDS...",
"Hey.",
]
`;
exports[`API (plugin) > plugin in webpack config > should work with output.clean: true 2`] = `
[]
`;
exports[`API (plugin) > should work with plugin API 1`] = `
[
"[webpack-dev-server] Server started: Hot Module Replacement enabled, Live Reloading enabled, Progress disabled, Overlay enabled.",
"[HMR] Waiting for update signal from WDS...",
"Hey.",
]
`;
exports[`API (plugin) > should work with plugin API 2`] = `
[]
`;