(key: string)
| 8 | import type { CreateHotkeySequenceDefinition } from '../src/createHotkeySequences' |
| 9 | |
| 10 | function dispatchKey(key: string) { |
| 11 | document.dispatchEvent(new KeyboardEvent('keydown', { key, bubbles: true })) |
| 12 | } |
| 13 | |
| 14 | describe('createHotkeySequences', () => { |
| 15 | beforeEach(() => { |
no outgoing calls
no test coverage detected
searching dependent graphs…