|
| 1 | +exports[`logging > plugin mode > should work and do not log messages about hot and live reloading is enabled 1`] = ` |
| 2 | +[ |
| 3 | + "[webpack-dev-server] Server started: Hot Module Replacement disabled, Live Reloading disabled, Progress disabled, Overlay enabled.", |
| 4 | + "Hey.", |
| 5 | +] |
| 6 | +`; |
| 7 | + |
| 8 | +exports[`logging > plugin mode > should work and log errors by default 1`] = ` |
| 9 | +[ |
| 10 | + "[webpack-dev-server] Server started: Hot Module Replacement enabled, Live Reloading enabled, Progress disabled, Overlay enabled.", |
| 11 | + "[HMR] Waiting for update signal from WDS...", |
| 12 | + "Hey.", |
| 13 | + "[webpack-dev-server] Errors while compiling. Reload prevented.", |
| 14 | + "[webpack-dev-server] ERROR |
| 15 | +Error from compilation", |
| 16 | +] |
| 17 | +`; |
| 18 | + |
| 19 | +exports[`logging > plugin mode > should work and log message about live reloading is enabled 1`] = ` |
| 20 | +[ |
| 21 | + "[webpack-dev-server] Server started: Hot Module Replacement disabled, Live Reloading enabled, Progress disabled, Overlay enabled.", |
| 22 | + "Hey.", |
| 23 | +] |
| 24 | +`; |
| 25 | + |
| 26 | +exports[`logging > plugin mode > should work and log messages about hot and live reloading is enabled 1`] = ` |
| 27 | +[ |
| 28 | + "[webpack-dev-server] Server started: Hot Module Replacement enabled, Live Reloading enabled, Progress disabled, Overlay enabled.", |
| 29 | + "[HMR] Waiting for update signal from WDS...", |
| 30 | + "Hey.", |
| 31 | +] |
| 32 | +`; |
| 33 | + |
| 34 | +exports[`logging > plugin mode > should work and log warnings by default 1`] = ` |
| 35 | +[ |
| 36 | + "[webpack-dev-server] Server started: Hot Module Replacement enabled, Live Reloading enabled, Progress disabled, Overlay enabled.", |
| 37 | + "[HMR] Waiting for update signal from WDS...", |
| 38 | + "Hey.", |
| 39 | + "[webpack-dev-server] Warnings while compiling.", |
| 40 | + "[webpack-dev-server] WARNING |
| 41 | +Warning from compilation", |
| 42 | +] |
| 43 | +`; |
| 44 | + |
| 45 | +exports[`logging > plugin mode > should work when the "client.logging" is "none" 1`] = ` |
| 46 | +[ |
| 47 | + "Hey.", |
| 48 | +] |
| 49 | +`; |
| 50 | + |
1 | 51 | exports[`logging > should work and do not log messages about hot and live reloading is enabled (ws) 1`] = ` |
2 | 52 | [ |
3 | 53 | "[webpack-dev-server] Server started: Hot Module Replacement disabled, Live Reloading disabled, Progress disabled, Overlay enabled.", |
|
0 commit comments