(directory: string)
| 70 | } |
| 71 | |
| 72 | function tryRemoveDirectory(directory: string): void { |
| 73 | try { |
| 74 | rmSync(directory, { recursive: true, force: true }); |
| 75 | } catch { |
| 76 | // Temp directories are reclaimed by the harness/OS. |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | it("should reload user settings", { timeout: 120_000 }, async () => { |
| 81 | await client.start(); |
no outgoing calls
no test coverage detected
searching dependent graphs…