()
| 74 | const space = async (modifierKeys?: ModifierKeys) => await keydown(' ', modifierKeys); |
| 75 | |
| 76 | const tabIntoGrid = async () => { |
| 77 | const focusableElement = gridElement.querySelector('[tabindex="0"]') as HTMLElement; |
| 78 | focusableElement?.focus(); |
| 79 | await fixture.whenStable(); |
| 80 | }; |
| 81 | |
| 82 | function getActiveCellId(): string | null { |
| 83 | if (fixture.componentInstance.focusMode() === 'roving') { |
no test coverage detected
searching dependent graphs…