(name: string, reason: string)
| 56 | } |
| 57 | |
| 58 | function skip(name: string, reason: string) { |
| 59 | results.push({ name, status: 'SKIP', detail: reason }); |
| 60 | console.log(` - ${name}: SKIP (${reason})`); |
| 61 | } |
| 62 | |
| 63 | function section(title: string) { |
| 64 | console.log(`\n${'='.repeat(60)}`); |