(modifierKeys?: {})
| 1049 | const enter = async (modifierKeys?: {}) => await keydown('Enter', modifierKeys); |
| 1050 | const escape = async (modifierKeys?: {}) => await keydown('Escape', modifierKeys); |
| 1051 | const home = async (modifierKeys?: {}) => await keydown('Home', modifierKeys); |
| 1052 | const end = async (modifierKeys?: {}) => await keydown('End', modifierKeys); |
| 1053 | |
| 1054 | async function setupCombobox() { |
no test coverage detected