(filePath: string, launchConfig?: any)
| 210 | } |
| 211 | |
| 212 | async function writeAutoLaunch(filePath: string, launchConfig?: any) { |
| 213 | const launchConfigs = launchConfig ? { configurations: [launchConfig] } : { configurations: [] }; |
| 214 | await fs.promises.writeFile(filePath, JSON.stringify(launchConfigs)); |
| 215 | } |
| 216 | |
| 217 | function createAutoLaunch(overridePath?: string) { |
| 218 | const autoLaunch = new AutoLaunch(overridePath ?? testDartCodeConfigFolder, logger, undefined); |
no outgoing calls
no test coverage detected