(p: ITestHandle, cb?: (threadId: string) => Promise<void>)
| 9 | |
| 10 | describe('webview breakpoints', () => { |
| 11 | async function waitForPause(p: ITestHandle, cb?: (threadId: string) => Promise<void>) { |
| 12 | const { threadId } = p.log(await p.dap.once('stopped')); |
| 13 | await p.logger.logStackTrace(threadId); |
| 14 | if (cb) await cb(threadId); |
| 15 | return p.dap.continue({ threadId }); |
| 16 | } |
| 17 | |
| 18 | itIntegrates('launched script', async ({ r, context }) => { |
| 19 | context.timeout(30 * 1000); |
no test coverage detected