()
| 21 | }; |
| 22 | |
| 23 | async function testStartupPauseHandling() { |
| 24 | await session.handlePaused({}); |
| 25 | assert.deepStrictEqual(cdpCalls, []); |
| 26 | |
| 27 | session.started = true; |
| 28 | await session.handlePaused({}); |
| 29 | assert.deepStrictEqual(cdpCalls, ['Debugger.resume']); |
| 30 | } |
| 31 | |
| 32 | testStartupPauseHandling().then(common.mustCall()); |
no test coverage detected