()
| 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 |
| 742 | // their own IDs. |
| 743 | return uniq([...this.testsById.values()]); |
| 744 | } |
| 745 | public getCurrentTest(sessionID: string, id: number) { |
| 746 | return this.testsById.get(`${sessionID}_${id}`); |
| 747 | } |
no test coverage detected