(title: string)
| 615 | }, |
| 616 | |
| 617 | section(title: string): void { |
| 618 | console.log(); |
| 619 | console.log(chalk.cyan("─".repeat(60))); |
| 620 | console.log(chalk.bold.white(` ${title}`)); |
| 621 | console.log(chalk.cyan("─".repeat(60))); |
| 622 | console.log(); |
| 623 | }, |
| 624 | |
| 625 | step(num: number, description: string): void { |
| 626 | console.log(chalk.cyan(`\n Step ${num}: `) + chalk.white(description)); |
nothing calls this directly
no outgoing calls
no test coverage detected