(spy: Mock<typeof console.log>)
| 7 | import { createInstallSkillsAction } from './install-skills' |
| 8 | |
| 9 | function getOutput(spy: Mock<typeof console.log>): string { |
| 10 | return spy.mock.calls.map(call => call.join(' ')).join('\n') |
| 11 | } |
| 12 | |
| 13 | describe('install-skills command', () => { |
| 14 | let program: Command |
no outgoing calls
no test coverage detected