(testName: string, _received: unknown, key?: string)
| 314 | } |
| 315 | |
| 316 | fail(testName: string, _received: unknown, key?: string): string { |
| 317 | this._counters.set(testName, (this._counters.get(testName) || 0) + 1); |
| 318 | const count = Number(this._counters.get(testName)); |
| 319 | |
| 320 | if (!key) { |
| 321 | key = testNameToKey(testName, count); |
| 322 | } |
| 323 | |
| 324 | this._uncheckedKeys.delete(key); |
| 325 | this.unmatched++; |
| 326 | return key; |
| 327 | } |
| 328 | } |
no test coverage detected