(dir: string)
| 45 | } |
| 46 | |
| 47 | export async function removeDirectoryIfExists(dir: string) { |
| 48 | if (await directoryExists(dir)) { |
| 49 | await rm(dir, { recursive: true, force: true }); |
| 50 | } |
| 51 | } |
| 52 | |
| 53 | export function createReportPath({ |
| 54 | outputDir, |
no test coverage detected