(name: string, cond: boolean)
| 12 | |
| 13 | let passed = 0, failed = 0; |
| 14 | function check(name: string, cond: boolean) { |
| 15 | if (cond) { passed++; console.log(` ✓ ${name}`); } |
| 16 | else { failed++; console.log(` ✗ ${name}`); } |
| 17 | } |
| 18 | |
| 19 | console.log('— pure helpers —'); |
| 20 | { |
no outgoing calls
no test coverage detected