()
| 21 | // Keyboard event helpers |
| 22 | const up = () => createKeyboardEvent('keydown', 38, 'ArrowUp'); |
| 23 | const down = () => createKeyboardEvent('keydown', 40, 'ArrowDown'); |
| 24 | const home = () => createKeyboardEvent('keydown', 36, 'Home'); |
| 25 | const end = () => createKeyboardEvent('keydown', 35, 'End'); |
| 26 | const enter = () => createKeyboardEvent('keydown', 13, 'Enter'); |
no test coverage detected