({
...options
}: PointerEventBuilderOptions = {})
| 222 | } |
| 223 | |
| 224 | export function buildPointerEvent({ |
| 225 | ...options |
| 226 | }: PointerEventBuilderOptions = {}): PointerEvent { |
| 227 | return new TestPointerEvent(options); |
| 228 | } |
| 229 | |
| 230 | export function buildMouseEvent({ |
| 231 | button = 0, |
no outgoing calls