(p: ITestHandle)
| 22 | |
| 23 | describe('node runtime', () => { |
| 24 | async function waitForPause(p: ITestHandle) { |
| 25 | const { threadId } = p.log(await p.dap.once('stopped')); |
| 26 | await p.logger.logStackTrace(threadId); |
| 27 | return p.dap.continue({ threadId }); |
| 28 | } |
| 29 | |
| 30 | async function evaluate(handle: NodeTestHandle, expression: string) { |
| 31 | handle.load(); |
no test coverage detected