()
| 70 | } |
| 71 | |
| 72 | protected override async getRootHarnessLoader(): Promise<HarnessLoader> { |
| 73 | const host = await this.host(); |
| 74 | const controlsId = await host.getAttribute('aria-controls'); |
| 75 | const documentRoot = await this.documentRootLocatorFactory().rootHarnessLoader(); |
| 76 | return await documentRoot.getChildLoader(`[ngTabPanel][id="${controlsId}"]`); |
| 77 | } |
| 78 | } |
| 79 | |
| 80 | /** Harness for interacting with an Aria tabs container in tests. */ |
no test coverage detected