Clear all entries and delete their temp DB files.
()
| 75 | |
| 76 | /** Clear all entries and delete their temp DB files. */ |
| 77 | clear(): void { |
| 78 | for (const entry of this.cache.values()) { |
| 79 | deleteTempDatabase(entry.tempDbPath) |
| 80 | } |
| 81 | this.cache.clear() |
| 82 | } |
| 83 | |
| 84 | /** Cleanup orphan temp DBs from previous runs. */ |
| 85 | cleanupOrphans(): void { |
nothing calls this directly
no test coverage detected