Method
reuseMatchingGroup
(groupName: string | undefined)
Source from the content-addressed store, hash-verified
| 760 | return this.testsById.set(`${sessionID}_${testID}`, node); |
| 761 | } |
| 762 | public reuseMatchingGroup(groupName: string | undefined): GroupNode | undefined { |
| 763 | return this.groupsByName.get(groupName ?? SuiteData.unnamedItemMarker); |
| 764 | } |
| 765 | public reuseMatchingTest(testName: string | undefined): TestNode | undefined { |
| 766 | return this.testsByName.get(testName ?? SuiteData.unnamedItemMarker); |
| 767 | } |
Tested by
no test coverage detected