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.
25 lines
716 B
25 lines
716 B
import * as 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); |
|
}); |
|
}); |
|
});
|
|
|