aboutsummaryrefslogtreecommitdiff
path: root/test/content/actions/setting.test.js
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2017-11-12 18:25:14 +0900
committerGitHub <noreply@github.com>2017-11-12 18:25:14 +0900
commitc7b05482f33cc778e1966faa9354ea46b490a115 (patch)
treeb73bc6e5a6468d8c5a1118dcfb61f9d00b1aa5cf /test/content/actions/setting.test.js
parent3af2e3154ed6b56400d02fc3d726bfc7186f372a (diff)
parentccf3c7b421e804172827dd34a995290afc85af10 (diff)
Merge pull request #132 from ueokande/meta-keys
Meta keys
Diffstat (limited to 'test/content/actions/setting.test.js')
-rw-r--r--test/content/actions/setting.test.js23
1 files changed, 22 insertions, 1 deletions
diff --git a/test/content/actions/setting.test.js b/test/content/actions/setting.test.js
index 8855f04..0228fea 100644
--- a/test/content/actions/setting.test.js
+++ b/test/content/actions/setting.test.js
@@ -7,7 +7,28 @@ describe("setting actions", () => {
it('create SETTING_SET action', () => {
let action = settingActions.set({ red: 'apple', yellow: 'banana' });
expect(action.type).to.equal(actions.SETTING_SET);
- expect(action.value).to.deep.equal({ red: 'apple', yellow: 'banana' });
+ expect(action.value.red).to.equal('apple');
+ expect(action.value.yellow).to.equal('banana');
+ expect(action.value.keymaps).to.be.empty;
+ });
+
+ it('converts keymaps', () => {
+ let action = settingActions.set({
+ keymaps: {
+ 'dd': 'remove current tab',
+ 'z<C-A>': 'increment',
+ }
+ });
+ let keymaps = action.value.keymaps;
+
+ expect(action.value.keymaps).to.have.deep.all.keys(
+ [
+ [{ 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 },
+ { key: 'a', shiftKey: false, ctrlKey: true, altKey: false, metaKey: false }],
+ ]
+ );
});
});
});