(overlayPath: string)
| 70 | ]) |
| 71 | |
| 72 | function safeRemoveOverlay(overlayPath: string): void { |
| 73 | rm( |
| 74 | overlayPath, |
| 75 | { recursive: true, force: true, maxRetries: 3, retryDelay: 100 }, |
| 76 | () => {}, |
| 77 | ) |
| 78 | } |
| 79 | |
| 80 | function getOverlayPath(id: string): string { |
| 81 | return join(getClaudeTempDir(), 'speculation', String(process.pid), id) |
no test coverage detected