(target?: HTMLElement, modifierKeys?: {})
| 43 | const left = async (target?: HTMLElement, modifierKeys?: {}) => |
| 44 | await keydown('ArrowLeft', target, modifierKeys); |
| 45 | const up = async (target?: HTMLElement, modifierKeys?: {}) => |
| 46 | await keydown('ArrowUp', target, modifierKeys); |
| 47 | const down = async (target?: HTMLElement, modifierKeys?: {}) => |
| 48 | await keydown('ArrowDown', target, modifierKeys); |
| 49 | const home = async (target?: HTMLElement, modifierKeys?: {}) => |
no test coverage detected