(files: Array<{ path: string; content: string }>)
| 36 | }); |
| 37 | |
| 38 | function runBoth(files: Array<{ path: string; content: string }>) { |
| 39 | const repo = makeRepoTree(files); |
| 40 | return collectPipeline({ repo }, noopCtx()); |
| 41 | } |
| 42 | |
| 43 | describe('parsing stage', () => { |
| 44 | it('extracts top-level function', () => { |
no test coverage detected