* Gets all matching harnesses for the given query within the current harness's content. * @param query The harness query to search for. * @returns The list of harness matching the given query.
(query: HarnessQuery<T>)
| 539 | * @returns The list of harness matching the given query. |
| 540 | */ |
| 541 | async getAllHarnesses<T extends ComponentHarness>(query: HarnessQuery<T>): Promise<T[]> { |
| 542 | return (await this.getRootHarnessLoader()).getAllHarnesses(query); |
| 543 | } |
| 544 | |
| 545 | /** |
| 546 | * Returns the number of matching harnesses for the given query within the current harness's |
nothing calls this directly
no test coverage detected
searching dependent graphs…