(targetPath: string)
| 25 | } |
| 26 | |
| 27 | async function pathExists(targetPath: string): Promise<boolean> { |
| 28 | return fs.promises |
| 29 | .access(targetPath) |
| 30 | .then(() => true) |
| 31 | .catch(() => false); |
| 32 | } |
| 33 | |
| 34 | describe("removeManagedGitWorktree", () => { |
| 35 | const tempDirs: string[] = []; |
no outgoing calls
no test coverage detected