(dirPath: string)
| 21 | } |
| 22 | |
| 23 | async function cleanupTempDir(dirPath: string): Promise<void> { |
| 24 | try { |
| 25 | await fs.rm(dirPath, { recursive: true, force: true }) |
| 26 | } catch { |
| 27 | // Ignore cleanup errors |
| 28 | } |
| 29 | } |
| 30 | |
| 31 | describe('convert command', () => { |
| 32 | let program: Command |