(value: string)
| 37 | }; |
| 38 | |
| 39 | const input = async (value: string) => { |
| 40 | await focus(); |
| 41 | inputElement.value = value; |
| 42 | inputElement.dispatchEvent(new Event('input', {bubbles: true})); |
| 43 | await fixture.whenStable(); |
| 44 | }; |
| 45 | |
| 46 | const click = async (element: HTMLElement, eventInit?: PointerEventInit) => { |
| 47 | await focus(); |
no test coverage detected
searching dependent graphs…