(suite: SuiteData, forceUpdate: boolean)
| 391 | } |
| 392 | |
| 393 | public updateSuiteTestCountLabels(suite: SuiteData, forceUpdate: boolean) { |
| 394 | this.updateTestCountLabels(suite.node, forceUpdate, "DOWN"); |
| 395 | } |
| 396 | |
| 397 | /** Recomputes the test counts and labels for a node and its parent/children (based on `direction`). */ |
| 398 | private updateTestCountLabels(node: RunnableTreeNode, forceUpdate: boolean, direction: "UP" | "DOWN"): void { |
no test coverage detected