(spy: Mock<typeof console.log>)
| 13 | const DEFAULT_OPTIONS: InspectOptions = {} |
| 14 | |
| 15 | function getOutput(spy: Mock<typeof console.log>): string { |
| 16 | return spy.mock.calls.map(call => call.join(' ')).join('\n') |
| 17 | } |
| 18 | |
| 19 | describe('inspect command', () => { |
| 20 | let program: Command |