(...args: unknown[])
| 44 | extraServerArgs: string[] = [], |
| 45 | ): Promise<void> { |
| 46 | const debugLog = (...args: unknown[]) => { |
| 47 | if (debug) { |
| 48 | console.log(...args); |
| 49 | } |
| 50 | }; |
| 51 | const absolutePath = path.resolve(scenarioPath); |
| 52 | debugLog( |
| 53 | `\n### Running Scenario: ${path.relative(ROOT_DIR, absolutePath)} ###`, |
no test coverage detected