(consoleLogs)
| 15 | "[webpack-dev-server] Server started: Hot Module Replacement enabled, Live Reloading enabled, Progress disabled, Overlay enabled."; |
| 16 | |
| 17 | const waitForConsoleLogFinished = async (consoleLogs) => { |
| 18 | await new Promise((resolve) => { |
| 19 | const interval = setInterval(() => { |
| 20 | if (consoleLogs.includes(HOT_ENABLED_MESSAGE)) { |
| 21 | clearInterval(interval); |
| 22 | |
| 23 | resolve(); |
| 24 | } |
| 25 | }, 100); |
| 26 | }); |
| 27 | }; |
| 28 | |
| 29 | describe("entry", () => { |
| 30 | const entryFirst = path.resolve( |
no outgoing calls
no test coverage detected
searching dependent graphs…