(dir: string)
| 16 | } |
| 17 | |
| 18 | async function cleanupDir(dir: string): Promise<void> { |
| 19 | try { |
| 20 | await fs.rm(dir, { recursive: true, force: true }); |
| 21 | } catch { |
| 22 | // Ignore cleanup errors |
| 23 | } |
| 24 | } |
| 25 | |
| 26 | describe('Relationship Sidecar', () => { |
| 27 | let tmpDir: string; |
no outgoing calls
no test coverage detected