(dir: string)
| 129 | describe('codegraph index — recovers a stale/oversized prior index (#1067)', () => { |
| 130 | let tempDir: string; |
| 131 | const dbPath = (dir: string) => path.join(dir, '.codegraph', 'codegraph.db'); |
| 132 | |
| 133 | beforeEach(() => { |
| 134 | tempDir = fs.mkdtempSync(path.join(os.tmpdir(), 'codegraph-index-recover-')); |
no test coverage detected