(prefix = "mc-pi-doctor-")
| 17 | const originalConfigHome = process.env.XDG_CONFIG_HOME; |
| 18 | |
| 19 | function makeTempRoot(prefix = "mc-pi-doctor-"): string { |
| 20 | const path = mkdtempSync(join(tmpdir(), prefix)); |
| 21 | tempRoots.push(path); |
| 22 | return path; |
| 23 | } |
| 24 | |
| 25 | class MockPrompts implements PromptIO { |
| 26 | readonly messages: string[] = []; |