(args: string[] = [])
| 336 | |
| 337 | // Helper to run the pull command |
| 338 | async function runPullCommand(args: string[] = []): Promise<void> { |
| 339 | const pullArgs = ['node', 'test', 'integrations', 'pull', ...args] |
| 340 | await program.parseAsync(pullArgs) |
| 341 | } |
| 342 | |
| 343 | beforeEach(async () => { |
| 344 | vi.clearAllMocks() |