()
| 102 | } |
| 103 | |
| 104 | export function getActiveReportCase(): string | undefined { |
| 105 | return activeCaseStorage.getStore() ?? activeCaseName; |
| 106 | } |
| 107 | |
| 108 | export function resetReportDir(reportDir = defaultReportDir()): void { |
| 109 | rmSync(reportDir, { recursive: true, force: true }); |