(file: string)
| 23 | let acceptQuickPick: EventEmitter<void>; |
| 24 | |
| 25 | const assertValidOutputFile = async (file: string) => { |
| 26 | const contents = await fs.readFile(file, 'utf-8'); |
| 27 | expect(() => JSON.parse(contents)).to.not.throw( |
| 28 | undefined, |
| 29 | 'expected to be valid JSON: ' + contents, |
| 30 | ); |
| 31 | }; |
| 32 | |
| 33 | const getFrameId = async (threadId: number, handle: ITestHandle) => |
| 34 | (await handle.dap.stackTrace({ threadId })).stackFrames[0].id; |
no test coverage detected