(
testContexts: Set<TestContext>,
results: AggregatedResult,
)
| 95 | } |
| 96 | |
| 97 | async onRunComplete( |
| 98 | testContexts: Set<TestContext>, |
| 99 | results: AggregatedResult, |
| 100 | ): Promise<void> { |
| 101 | for (const reporter of this._reporters) { |
| 102 | if (reporter.onRunComplete) { |
| 103 | await reporter.onRunComplete(testContexts, results); |
| 104 | } |
| 105 | } |
| 106 | } |
| 107 | |
| 108 | // Return a list of last errors for every reporter |
| 109 | getErrors(): Array<Error> { |
no outgoing calls
no test coverage detected