(filePath: string)
| 16 | } |
| 17 | |
| 18 | async function pathExists(filePath: string): Promise<boolean> { |
| 19 | try { |
| 20 | await fs.stat(filePath); |
| 21 | return true; |
| 22 | } catch { |
| 23 | return false; |
| 24 | } |
| 25 | } |
| 26 | |
| 27 | describe("WorkspaceMcpOverridesService", () => { |
| 28 | let tempDir: string; |
no test coverage detected