(options: CliRunOptions)
| 13 | }; |
| 14 | |
| 15 | export async function runCliCommand(options: CliRunOptions): Promise<CommandRequestResult> { |
| 16 | return (await runCliCommandWithOutput(options)).result; |
| 17 | } |
| 18 | |
| 19 | export async function runCliCommandWithOutput(options: CliRunOptions): Promise<{ |
| 20 | result: CommandRequestResult; |
no test coverage detected