(filePath: string, launchConfig?: any, overridePath?: string)
| 220 | } |
| 221 | |
| 222 | async function triggerAutoLaunch(filePath: string, launchConfig?: any, overridePath?: string) { |
| 223 | await writeAutoLaunch(filePath, launchConfig); |
| 224 | await delay(100); // Small delay to ensure file exists before we create AutoLaunch. |
| 225 | |
| 226 | createAutoLaunch(overridePath); |
| 227 | } |
no test coverage detected