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