(testName: string)
| 297 | |
| 298 | /** Create an isolated worktree for a test. Returns the worktree path. */ |
| 299 | export function createTestWorktree(testName: string): string { |
| 300 | return getWorktreeManager().create(testName); |
| 301 | } |
| 302 | |
| 303 | /** Harvest changes and clean up. Call in afterAll(). Returns HarvestResult for eval integration. */ |
| 304 | export function harvestAndCleanup(testName: string): HarvestResult | null { |
no test coverage detected