(testCase: TestCase)
| 11 | tests: number = 0; |
| 12 | assertions: number = 0; |
| 13 | async onTestCaseResult(testCase: TestCase) { |
| 14 | this.assertions += (testCase.meta() as any).assertions || 0; |
| 15 | this.tests++; |
| 16 | super.onTestCaseResult(testCase); |
| 17 | } |
| 18 | |
| 19 | async onTestRunEnd( |
| 20 | testModules: ReadonlyArray<TestModule>, |
nothing calls this directly
no outgoing calls
no test coverage detected