* Gets a `HarnessLoader` that searches for harnesses under the first element matching the given * selector within the current harness's content. * @param selector The selector for an element in the component's content. * @returns A `HarnessLoader` that searches for harnesses under the given
(selector: S)
| 487 | * @returns A `HarnessLoader` that searches for harnesses under the given selector. |
| 488 | */ |
| 489 | async getChildLoader(selector: S): Promise<HarnessLoader> { |
| 490 | return (await this.getRootHarnessLoader()).getChildLoader(selector); |
| 491 | } |
| 492 | |
| 493 | /** |
| 494 | * Gets a list of `HarnessLoader` for each element matching the given selector under the current |
nothing calls this directly
no test coverage detected
searching dependent graphs…