(filePath: string)
| 1197 | } |
| 1198 | |
| 1199 | export function deleteFileIfExists(filePath: string) { |
| 1200 | if (fs.existsSync(filePath)) { |
| 1201 | fs.unlinkSync(filePath); |
| 1202 | } |
| 1203 | } |
| 1204 | |
| 1205 | export async function captureDebugSessionCustomEvents(startDebug: () => void, expectMultipleSessions = false): Promise<vs.DebugSessionCustomEvent[]> { |
| 1206 | let totalSessionsStarted = 0; |
no outgoing calls
no test coverage detected