A fork of https://github.com/ueokande/vim-vixen
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.4 KiB
36 lines
1.4 KiB
7 years ago
|
import actions from 'content/actions';
|
||
|
import * as settingActions from 'content/actions/setting';
|
||
|
|
||
|
describe("setting actions", () => {
|
||
|
describe("set", () => {
|
||
|
it('create SETTING_SET action', () => {
|
||
|
let action = settingActions.set({ red: 'apple', yellow: 'banana' });
|
||
|
expect(action.type).to.equal(actions.SETTING_SET);
|
||
7 years ago
|
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;
|
||
7 years ago
|
let map = new Map(keymaps);
|
||
|
expect(map).to.have.deep.all.keys(
|
||
7 years ago
|
[
|
||
7 years ago
|
[{ key: 'Esc', shiftKey: false, ctrlKey: false, altKey: false, metaKey: false }],
|
||
|
[{ key: '[', shiftKey: false, ctrlKey: true, altKey: false, metaKey: false }],
|
||
7 years ago
|
[{ 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 }],
|
||
|
]
|
||
|
);
|
||
7 years ago
|
});
|
||
|
});
|
||
|
});
|