()
| 115 | // `git rev-parse --is-inside-work-tree` even when the subprocess HOME lacks a |
| 116 | // safe.directory exception for the checkout. |
| 117 | function makeGitWorkspace() { |
| 118 | const dir = makeTmpDir(); |
| 119 | execFileSync('git', ['init', '-q'], { cwd: dir }); |
| 120 | return dir; |
| 121 | } |
| 122 | |
| 123 | describe('evolver-session-start workspace scoping', () => { |
| 124 | it('injects only the current workspace\'s outcomes, not other projects\'', () => { |
no test coverage detected