()
| 28 | }); |
| 29 | |
| 30 | function createDirectory(): string { |
| 31 | const directory = mkdtempSync(path.join(tmpdir(), 'cli-exec-')); |
| 32 | directories.push(directory); |
| 33 | return directory; |
| 34 | } |
| 35 | |
| 36 | async function expectedRealPath(filePath: string): Promise<string> { |
| 37 | try { |
no test coverage detected