(element: Element)
| 598 | let fixture: ComponentFixture<MenuTriggerExample>; |
| 599 | |
| 600 | const focusin = async (element: Element) => { |
| 601 | element.dispatchEvent(new FocusEvent('focusin', {bubbles: true})); |
| 602 | await fixture.whenStable(); |
| 603 | }; |
| 604 | |
| 605 | const keydown = async (element: Element, key: string, modifierKeys: {} = {}) => { |
| 606 | await focusin(element); |
no test coverage detected
searching dependent graphs…