(spy: Mock<typeof console.log>)
| 11 | const HOUSING_FILE = join('examples', 'housing_price_prediction.deepnote') |
| 12 | |
| 13 | function getOutput(spy: Mock<typeof console.log>): string { |
| 14 | return spy.mock.calls.map(call => call.join(' ')).join('\n') |
| 15 | } |
| 16 | |
| 17 | describe('dag command', () => { |
| 18 | let program: Command |