(prefix: string)
| 33 | }); |
| 34 | |
| 35 | async function makeTempDir(prefix: string): Promise<string> { |
| 36 | const dir = await mkdtemp(join(tmpdir(), prefix)); |
| 37 | tempDirs.push(dir); |
| 38 | return dir; |
| 39 | } |
| 40 | |
| 41 | async function readOptionalFile(path: string): Promise<string> { |
| 42 | try { |
no test coverage detected