()
| 56 | |
| 57 | describe('help command processed on correct command', () => { |
| 58 | function makeCommand() { |
| 59 | const program = new commander.Command(); |
| 60 | program.configureOutput({ |
| 61 | writeOut: () => {}, |
| 62 | writeErr: () => {}, |
| 63 | }); |
| 64 | |
| 65 | return program; |
| 66 | } |
| 67 | |
| 68 | test('when "program help" then program', () => { |
| 69 | const program = makeCommand(); |
no test coverage detected