(modifierKeys?: {})
| 677 | const down = async (modifierKeys?: {}) => await keydown('ArrowDown', modifierKeys); |
| 678 | const left = async (modifierKeys?: {}) => await keydown('ArrowLeft', modifierKeys); |
| 679 | const right = async (modifierKeys?: {}) => await keydown('ArrowRight', modifierKeys); |
| 680 | const enter = async (modifierKeys?: {}) => await keydown('Enter', modifierKeys); |
| 681 | const escape = async (modifierKeys?: {}) => await keydown('Escape', modifierKeys); |
| 682 |
no test coverage detected