(label: string, detail?: string)
| 42 | } |
| 43 | |
| 44 | function fail(label: string, detail?: string) { |
| 45 | console.error(` ❌ ${label}`); |
| 46 | if (detail) console.error(` → ${detail}`); |
| 47 | failed++; |
| 48 | } |
| 49 | |
| 50 | function check(label: string, ok: boolean, detail?: string) { |
| 51 | if (ok) pass(label); |
no outgoing calls
no test coverage detected
searching dependent graphs…