(overridePath?: string)
| 215 | } |
| 216 | |
| 217 | function createAutoLaunch(overridePath?: string) { |
| 218 | const autoLaunch = new AutoLaunch(overridePath ?? testDartCodeConfigFolder, logger, undefined); |
| 219 | defer("dispose AutoLaunch", () => autoLaunch.dispose()); |
| 220 | } |
| 221 | |
| 222 | async function triggerAutoLaunch(filePath: string, launchConfig?: any, overridePath?: string) { |
| 223 | await writeAutoLaunch(filePath, launchConfig); |
no test coverage detected