diff options
Diffstat (limited to 'test/content/actions')
-rw-r--r-- | test/content/actions/addon.test.js | 1 | ||||
-rw-r--r-- | test/content/actions/follow-controller.test.js | 1 | ||||
-rw-r--r-- | test/content/actions/input.test.js | 1 | ||||
-rw-r--r-- | test/content/actions/setting.test.js | 3 |
4 files changed, 2 insertions, 4 deletions
diff --git a/test/content/actions/addon.test.js b/test/content/actions/addon.test.js index 7f244dc..5f96372 100644 --- a/test/content/actions/addon.test.js +++ b/test/content/actions/addon.test.js @@ -1,4 +1,3 @@ -import { expect } from "chai"; import actions from 'content/actions'; import * as addonActions from 'content/actions/addon'; diff --git a/test/content/actions/follow-controller.test.js b/test/content/actions/follow-controller.test.js index 298abf2..718a90a 100644 --- a/test/content/actions/follow-controller.test.js +++ b/test/content/actions/follow-controller.test.js @@ -1,4 +1,3 @@ -import { expect } from "chai"; import actions from 'content/actions'; import * as followControllerActions from 'content/actions/follow-controller'; diff --git a/test/content/actions/input.test.js b/test/content/actions/input.test.js index 30705d2..fe9db5f 100644 --- a/test/content/actions/input.test.js +++ b/test/content/actions/input.test.js @@ -1,4 +1,3 @@ -import { expect } from "chai"; import actions from 'content/actions'; import * as inputActions from 'content/actions/input'; diff --git a/test/content/actions/setting.test.js b/test/content/actions/setting.test.js index 1248edf..10f6807 100644 --- a/test/content/actions/setting.test.js +++ b/test/content/actions/setting.test.js @@ -1,4 +1,3 @@ -import { expect } from "chai"; import actions from 'content/actions'; import * as settingActions from 'content/actions/setting'; @@ -23,6 +22,8 @@ describe("setting actions", () => { let map = new Map(keymaps); expect(map).to.have.deep.all.keys( [ + [{ key: 'Esc', shiftKey: false, ctrlKey: false, altKey: false, metaKey: false }], + [{ key: '[', shiftKey: false, ctrlKey: true, altKey: false, metaKey: false }], [{ key: 'd', shiftKey: false, ctrlKey: false, altKey: false, metaKey: false }, { key: 'd', shiftKey: false, ctrlKey: false, altKey: false, metaKey: false }], [{ key: 'z', shiftKey: false, ctrlKey: false, altKey: false, metaKey: false }, |