(mods?: ModifierKeys)
| 27 | const end = (mods?: ModifierKeys) => createKeyboardEvent('keydown', 35, 'End', mods); |
| 28 | const space = (mods?: ModifierKeys) => createKeyboardEvent('keydown', 32, ' ', mods); |
| 29 | const enter = (mods?: ModifierKeys) => createKeyboardEvent('keydown', 13, 'Enter', mods); |
| 30 | const shift = () => createKeyboardEvent('keydown', 16, 'Shift', {shift: true}); |
| 31 | |
| 32 | describe('Listbox Pattern', () => { |
no test coverage detected