()
| 43 | }); |
| 44 | |
| 45 | async function createTempRoot(): Promise<string> { |
| 46 | const tempRoot = await mkdtemp(path.join(os.tmpdir(), "mux-remove-managed-worktree-")); |
| 47 | tempDirs.push(tempRoot); |
| 48 | return tempRoot; |
| 49 | } |
| 50 | |
| 51 | it("falls back to recursive removal when git rejects a multi-project container path", async () => { |
| 52 | const tempRoot = await createTempRoot(); |
no test coverage detected