(payload)
| 239 | } |
| 240 | |
| 241 | export function click(payload) { |
| 242 | return createMouseEvent('click', { |
| 243 | button: buttonType.primary, |
| 244 | ...payload, |
| 245 | }); |
| 246 | } |
| 247 | |
| 248 | export function contextmenu(payload) { |
| 249 | return createMouseEvent('contextmenu', { |
nothing calls this directly
no test coverage detected