()
| 19 | * Helper to type "hello world!" in insert mode |
| 20 | */ |
| 21 | const typeHelloWorld = async () => { |
| 22 | await modeHandler.handleMultipleKeyEvents([ |
| 23 | 'i', |
| 24 | 'h', |
| 25 | 'e', |
| 26 | 'l', |
| 27 | 'l', |
| 28 | 'o', |
| 29 | ' ', |
| 30 | 'w', |
| 31 | 'o', |
| 32 | 'r', |
| 33 | 'l', |
| 34 | 'd', |
| 35 | '!', |
| 36 | '<Esc>', |
| 37 | ]); |
| 38 | }; |
| 39 | |
| 40 | /** |
| 41 | * Helper to run the :w command |
no test coverage detected