(command, script, line)
| 101 | } |
| 102 | |
| 103 | async waitForBreakAfterCommand(command, script, line) { |
| 104 | const notificationPromise = waitForEvent(this, 'Debugger.paused'); |
| 105 | this.post(command); |
| 106 | const notification = await notificationPromise; |
| 107 | const callFrame = notification.params.callFrames[0]; |
| 108 | // eslint-disable-next-line node-core/must-call-assert |
| 109 | assert.strictEqual(callFrame.location.lineNumber, line); |
| 110 | } |
| 111 | |
| 112 | post(method, parameters) { |
| 113 | const msg = { |
no test coverage detected