()
| 21 | |
| 22 | // Create a temporary directory for each test |
| 23 | function createTempDir(): string { |
| 24 | return fs.mkdtempSync(path.join(os.tmpdir(), 'codegraph-test-')); |
| 25 | } |
| 26 | |
| 27 | // Clean up temporary directory |
| 28 | function cleanupTempDir(dir: string): void { |
no test coverage detected