()
| 50 | }; |
| 51 | |
| 52 | const focus = async () => { |
| 53 | inputElement.dispatchEvent(new FocusEvent('focusin', {bubbles: true})); |
| 54 | await fixture.whenStable(); |
| 55 | }; |
| 56 | |
| 57 | const blur = async (relatedTarget?: EventTarget) => { |
| 58 | inputElement.dispatchEvent(new FocusEvent('focusout', {bubbles: true, relatedTarget})); |
no test coverage detected
searching dependent graphs…