(workspaceName: string)
| 61 | } |
| 62 | |
| 63 | async removeContainer(workspaceName: string): Promise<void> { |
| 64 | const containerPath = this.getContainerPath(workspaceName); |
| 65 | // force: true keeps this idempotent (no error if already removed). |
| 66 | await fs.rm(containerPath, { recursive: true, force: true }); |
| 67 | } |
| 68 | } |
no test coverage detected