(tests: Array<Test>)
| 217 | } |
| 218 | |
| 219 | allFailedTests(tests: Array<Test>): Array<Test> | Promise<Array<Test>> { |
| 220 | return this.sort(tests.filter(test => this.hasFailed(test))); |
| 221 | } |
| 222 | |
| 223 | cacheResults(tests: Array<Test>, results: AggregatedResult): void { |
| 224 | const map = Object.create(null) as Record<string, Test | undefined>; |
no test coverage detected