(properties)
| 4 | import * as vomnibarPage from "../../pages/vomnibar_page.js"; |
| 5 | |
| 6 | function newKeyEvent(properties) { |
| 7 | return Object.assign( |
| 8 | { |
| 9 | type: "keydown", |
| 10 | key: "a", |
| 11 | ctrlKey: false, |
| 12 | shiftKey: false, |
| 13 | altKey: false, |
| 14 | metaKey: false, |
| 15 | stopImmediatePropagation: function () {}, |
| 16 | preventDefault: function () {}, |
| 17 | }, |
| 18 | properties, |
| 19 | ); |
| 20 | } |
| 21 | |
| 22 | context("vomnibar page", () => { |
| 23 | let ui; |