| 20 | */ |
| 21 | |
| 22 | export interface CliInvocationResult { |
| 23 | stdout: string; |
| 24 | stderr: string; |
| 25 | code: number; |
| 26 | } |
| 27 | |
| 28 | export async function expectJsonModeStdoutIsPureJson( |
| 29 | runCli: () => Promise<CliInvocationResult>, |
nothing calls this directly
no outgoing calls
no test coverage detected