(debug: boolean)
| 81 | } |
| 82 | |
| 83 | export async function pauseIfDebug(debug: boolean) { |
| 84 | if (debug) { |
| 85 | await waitForUserPrompt("Press Enter to continue..."); |
| 86 | } |
| 87 | } |
| 88 | |
| 89 | export async function renderSummary(results: Map<any, any>) { |
| 90 | console.log(chalk.hex(colors.green)("[Done]")); |
no test coverage detected