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.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
|
|
|
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);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|