* Checks whether there is a matching harnesses for the given query within the current harness's * content. * * @param query The harness query to search for. * @returns Whether there is matching harnesses for the given query.
(query: HarnessQuery<T>)
| 561 | * @returns Whether there is matching harnesses for the given query. |
| 562 | */ |
| 563 | async hasHarness<T extends ComponentHarness>(query: HarnessQuery<T>): Promise<boolean> { |
| 564 | return (await this.getRootHarnessLoader()).hasHarness(query); |
| 565 | } |
| 566 | |
| 567 | /** |
| 568 | * Gets the root harness loader from which to start |
nothing calls this directly
no test coverage detected
searching dependent graphs…