(...args: string[])
| 157 | let cg: CodeGraph; |
| 158 | |
| 159 | function git(...args: string[]) { |
| 160 | execFileSync('git', args, { cwd: testDir, stdio: 'pipe' }); |
| 161 | } |
| 162 | |
| 163 | beforeEach(async () => { |
| 164 | testDir = fs.mkdtempSync(path.join(os.tmpdir(), 'codegraph-git-sync-')); |