(cwd: string, name: string, extraArgs: string[] = [])
| 47 | } |
| 48 | |
| 49 | async function createChange(cwd: string, name: string, extraArgs: string[] = []) { |
| 50 | const result = await runCLI(['new', 'change', name, '--json', ...extraArgs], { cwd, env }); |
| 51 | expect(result.exitCode).toBe(0); |
| 52 | } |
| 53 | |
| 54 | it('carries the live index in both instruction surfaces, both modes', async () => { |
| 55 | await createChange(appRepo, 'billing-rework'); |
no test coverage detected