* Gets a list of `HarnessLoader` for each element matching the given selector under the current * harness's cotnent that searches for harnesses under that element. * @param selector The selector for elements in the component's content. * @returns A list of `HarnessLoader` for each element m
(selector: S)
| 497 | * @returns A list of `HarnessLoader` for each element matching the given selector. |
| 498 | */ |
| 499 | async getAllChildLoaders(selector: S): Promise<HarnessLoader[]> { |
| 500 | return (await this.getRootHarnessLoader()).getAllChildLoaders(selector); |
| 501 | } |
| 502 | |
| 503 | /** |
| 504 | * 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…