(...args: string[])
| 179 | let cg: CodeGraph; |
| 180 | |
| 181 | function git(...args: string[]) { |
| 182 | execFileSync('git', args, { cwd: testDir, stdio: 'pipe' }); |
| 183 | } |
| 184 | |
| 185 | beforeEach(async () => { |
| 186 | testDir = fs.mkdtempSync(path.join(os.tmpdir(), 'codegraph-git-sync-')); |