()
| 10 | */ |
| 11 | |
| 12 | export function createTestCommand() { |
| 13 | const cmd = new Command(); |
| 14 | cmd |
| 15 | .exitOverride() // So we get exceptions instead of process.exit |
| 16 | .configureOutput({ |
| 17 | writeOut: () => {}, |
| 18 | writeErr: () => {}, |
| 19 | }); |
| 20 | return cmd; |
| 21 | } |