()
| 235 | } |
| 236 | |
| 237 | function emitTestProgress(): void { |
| 238 | if (operation !== 'TEST') { |
| 239 | return; |
| 240 | } |
| 241 | onEvent({ |
| 242 | kind: 'test-result', |
| 243 | fragment: 'test-progress', |
| 244 | operation: 'TEST', |
| 245 | completed: completedCount, |
| 246 | failed: failedCount, |
| 247 | skipped: skippedCount, |
| 248 | }); |
| 249 | } |
| 250 | |
| 251 | function recordTestCaseResult( |
| 252 | testCase: ParsedTestCase, |
no outgoing calls
no test coverage detected