({
...options
}: TouchEventBuilderOptions = {})
| 297 | } |
| 298 | |
| 299 | export function buildTouchEvent({ |
| 300 | ...options |
| 301 | }: TouchEventBuilderOptions = {}): TouchEvent { |
| 302 | return new TestTouchEvent(options); |
| 303 | } |
| 304 | |
| 305 | export function buildReactMouseEvent<TElement extends Element = Element>({ |
| 306 | clientX = 0, |
no outgoing calls
no test coverage detected