(mods?: ModifierKeys)
| 31 | const space = (mods?: ModifierKeys) => createKeyboardEvent('keydown', 32, ' ', mods); |
| 32 | const enter = (mods?: ModifierKeys) => createKeyboardEvent('keydown', 13, 'Enter', mods); |
| 33 | const asterisk = (mods?: ModifierKeys) => createKeyboardEvent('keydown', 106, '*', mods); |
| 34 | const shift = () => createKeyboardEvent('keydown', 16, 'Shift', {shift: true}); |
| 35 | |
| 36 | function createClickEvent(element: HTMLElement, mods?: ModifierKeys): PointerEvent { |
no test coverage detected