(label: string)
| 37 | let failed = 0; |
| 38 | |
| 39 | function pass(label: string) { |
| 40 | console.log(` ✅ ${label}`); |
| 41 | passed++; |
| 42 | } |
| 43 | |
| 44 | function fail(label: string, detail?: string) { |
| 45 | console.error(` ❌ ${label}`); |
no outgoing calls
no test coverage detected
searching dependent graphs…