()
| 377 | } |
| 378 | |
| 379 | public handleSkippedTestsConfigChange(): void { |
| 380 | // Skipped tests affect the total count labels. |
| 381 | for (const suite of this.suites.values()) { |
| 382 | this.updateSuiteTestCountLabels(suite, true); |
| 383 | } |
| 384 | } |
| 385 | |
| 386 | public updateNode(event?: NodeDidChangeEvent) { |
| 387 | if (event?.nodeWasRemoved) |
no test coverage detected