(project?: Project)
| 70 | } |
| 71 | |
| 72 | function destroyProject(project?: Project): void { |
| 73 | if (!project) return; |
| 74 | project.cg.destroy(); |
| 75 | if (fs.existsSync(project.dir)) fs.rmSync(project.dir, { recursive: true, force: true }); |
| 76 | } |
| 77 | |
| 78 | /** |
| 79 | * One explore call, reduced to what the allocation assertions need — plus the |
no test coverage detected