()
| 80 | }; |
| 81 | |
| 82 | function getActiveCellId(): string | null { |
| 83 | if (fixture.componentInstance.focusMode() === 'roving') { |
| 84 | const activeEl = gridElement.querySelector('[tabindex="0"]'); |
| 85 | return activeEl ? activeEl.id : null; |
| 86 | } |
| 87 | return gridElement.getAttribute('aria-activedescendant'); |
| 88 | } |
| 89 | |
| 90 | async function setupGrid(opts?: { |
| 91 | disabled?: boolean; |
no test coverage detected
searching dependent graphs…