(name, reason)
| 61 | } |
| 62 | |
| 63 | async function fail(name, reason) { |
| 64 | failed++; |
| 65 | errors.push([name, reason]); |
| 66 | console.log(` FAIL ${name}: ${reason}`); |
| 67 | await report(currentSuite, name, "fail", reason); |
| 68 | } |
| 69 | |
| 70 | function setSuite(suite) { |
| 71 | currentSuite = suite; |
no test coverage detected