| 351 | }); |
| 352 | |
| 353 | interface SpawnResult { |
| 354 | exitCode: number; |
| 355 | stdout: string; |
| 356 | stderr: string; |
| 357 | } |
| 358 | |
| 359 | function runCli(args: string[], envOverrides: Record<string, string> = {}): Promise<SpawnResult> { |
| 360 | return new Promise((resolveResult, rejectResult) => { |
nothing calls this directly
no outgoing calls
no test coverage detected