* Clean up test directory
()
| 94 | * Clean up test directory |
| 95 | */ |
| 96 | function cleanup() { |
| 97 | try { |
| 98 | fs.rmSync(TEST_DIR, { recursive: true, force: true }); |
| 99 | } catch (error) { |
| 100 | console.error("Cleanup failed:", error.message); |
| 101 | } |
| 102 | } |
| 103 | |
| 104 | // Run tests |
| 105 | function runTests() { |
no test coverage detected