* Gets the first matching harness for the given query within the current harness's content. * @param query The harness query to search for. * @returns The first harness matching the given query. * @throws If no matching harness is found.
(query: HarnessQuery<T>)
| 507 | * @throws If no matching harness is found. |
| 508 | */ |
| 509 | async getHarness<T extends ComponentHarness>(query: HarnessQuery<T>): Promise<T> { |
| 510 | return (await this.getRootHarnessLoader()).getHarness(query); |
| 511 | } |
| 512 | |
| 513 | /** |
| 514 | * Gets the first matching harness for the given query within the current harness's content. |
nothing calls this directly
no test coverage detected
searching dependent graphs…