()
| 731 | private static unnamedItemMarker = "<!!!###unnamed-test-item###!!!>"; |
| 732 | |
| 733 | public getAllGroups(): GroupNode[] { |
| 734 | // We need to uniq() these because we store values in the map from |
| 735 | // other runs so that concurrent runs can look up parent nodes from |
| 736 | // their own IDs. |
| 737 | return uniq([...this.groupsById.values()]); |
| 738 | } |
| 739 | public getAllTests(): TestNode[] { |
| 740 | // We need to uniq() these because we store values in the map from |
| 741 | // other runs so that concurrent runs can look up parent nodes from |
no test coverage detected