()
| 10 | } from '../src/constants/codebase-context.js'; |
| 11 | |
| 12 | async function createTempDir(): Promise<string> { |
| 13 | const tmpDir = path.join(process.cwd(), `.tmp-rel-test-${Date.now()}`); |
| 14 | await fs.mkdir(tmpDir, { recursive: true }); |
| 15 | return tmpDir; |
| 16 | } |
| 17 | |
| 18 | async function cleanupDir(dir: string): Promise<void> { |
| 19 | try { |
no outgoing calls
no test coverage detected