(config: RunnerConfig)
| 950 | } |
| 951 | |
| 952 | async function ensureOutputArea(config: RunnerConfig): Promise<void> { |
| 953 | await mkdir(config.paths.outputDir, { recursive: true }); |
| 954 | await ensureParentDirectory(config.paths.logFile); |
| 955 | } |
| 956 | |
| 957 | async function main(): Promise<void> { |
| 958 | const argv = process.argv.slice(2); |
no test coverage detected