| 7 | const CLI_PATH = resolve(__dirname, "../../build/cli.js"); |
| 8 | |
| 9 | export interface CliResult { |
| 10 | exitCode: number | null; |
| 11 | stdout: string; |
| 12 | stderr: string; |
| 13 | output: string; // Combined stdout + stderr |
| 14 | } |
| 15 | |
| 16 | export interface CliOptions { |
| 17 | timeout?: number; |
nothing calls this directly
no outgoing calls
no test coverage detected