()
| 15 | const tempDirs: string[] = []; |
| 16 | |
| 17 | function tempRoot(): string { |
| 18 | const dir = mkdtempSync(join(tmpdir(), "plannotator-source-save-")); |
| 19 | tempDirs.push(dir); |
| 20 | return dir; |
| 21 | } |
| 22 | |
| 23 | afterEach(() => { |
| 24 | for (const dir of tempDirs.splice(0)) { |
no test coverage detected