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.0 KiB
36 lines
1.0 KiB
6 years ago
|
import actions from 'content/actions';
|
||
|
import * as markActions from 'content/actions/mark';
|
||
|
|
||
|
describe('mark actions', () => {
|
||
|
describe('startSet', () => {
|
||
|
it('create MARK_START_SET action', () => {
|
||
|
let action = markActions.startSet();
|
||
|
expect(action.type).to.equal(actions.MARK_START_SET);
|
||
|
});
|
||
|
});
|
||
|
|
||
|
describe('startJump', () => {
|
||
|
it('create MARK_START_JUMP action', () => {
|
||
|
let action = markActions.startJump();
|
||
|
expect(action.type).to.equal(actions.MARK_START_JUMP);
|
||
|
});
|
||
|
});
|
||
|
|
||
|
describe('cancel', () => {
|
||
|
it('create MARK_CANCEL action', () => {
|
||
|
let action = markActions.cancel();
|
||
|
expect(action.type).to.equal(actions.MARK_CANCEL);
|
||
|
});
|
||
|
});
|
||
|
|
||
|
describe('setLocal', () => {
|
||
|
it('create setLocal action', () => {
|
||
6 years ago
|
let action = markActions.setLocal('a', 20, 30);
|
||
6 years ago
|
expect(action.type).to.equal(actions.MARK_SET_LOCAL);
|
||
|
expect(action.key).to.equal('a');
|
||
6 years ago
|
expect(action.x).to.equal(20);
|
||
6 years ago
|
expect(action.y).to.equal(30);
|
||
|
});
|
||
|
});
|
||
|
});
|