| 14 | } |
| 15 | |
| 16 | export interface CliResult { |
| 17 | exitCode: number; |
| 18 | output: string; |
| 19 | } |
| 20 | |
| 21 | export async function runCli(args: string[]): Promise<CliResult> { |
| 22 | const child = forkCli(args); |
nothing calls this directly
no outgoing calls
no test coverage detected