(payload)
| 294 | */ |
| 295 | |
| 296 | export function keydown(payload) { |
| 297 | return createKeyboardEvent('keydown', payload); |
| 298 | } |
| 299 | |
| 300 | export function keyup(payload) { |
| 301 | return createKeyboardEvent('keyup', payload); |
nothing calls this directly
no test coverage detected