* Returns the number of matching harnesses for the given query within the current harness's * content. * * @param query The harness query to search for. * @returns The number of matching harnesses for the given query.
(query: HarnessQuery<T>)
| 550 | * @returns The number of matching harnesses for the given query. |
| 551 | */ |
| 552 | async countHarnesses<T extends ComponentHarness>(query: HarnessQuery<T>): Promise<number> { |
| 553 | return (await this.getRootHarnessLoader()).countHarnesses(query); |
| 554 | } |
| 555 | |
| 556 | /** |
| 557 | * Checks whether there is a matching harnesses for the given query within the current harness's |
nothing calls this directly
no test coverage detected
searching dependent graphs…