(title)
| 30 | } |
| 31 | |
| 32 | function logSection(title) { |
| 33 | log(`\n${'='.repeat(60)}`, colors.bright); |
| 34 | log(title, colors.bright + colors.blue); |
| 35 | log('='.repeat(60), colors.bright); |
| 36 | } |
| 37 | |
| 38 | function formatTime(ms) { |
| 39 | if (ms < 1000) { |
no test coverage detected