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.
49 lines
1.8 KiB
49 lines
1.8 KiB
7 years ago
|
import { expect } from "chai";
|
||
7 years ago
|
import actions from 'content/actions';
|
||
|
import followReducer from 'content/reducers/follow';
|
||
7 years ago
|
|
||
|
describe('follow reducer', () => {
|
||
|
it ('returns the initial state', () => {
|
||
|
let state = followReducer(undefined, {});
|
||
|
expect(state).to.have.property('enabled', false);
|
||
|
expect(state).to.have.property('newTab');
|
||
7 years ago
|
expect(state).to.have.deep.property('keys', '');
|
||
7 years ago
|
});
|
||
|
|
||
|
it ('returns next state for FOLLOW_ENABLE', () => {
|
||
|
let action = { type: actions.FOLLOW_ENABLE, newTab: true };
|
||
|
let state = followReducer({ enabled: false, newTab: false }, action);
|
||
|
expect(state).to.have.property('enabled', true);
|
||
|
expect(state).to.have.property('newTab', true);
|
||
7 years ago
|
expect(state).to.have.property('keys', '');
|
||
7 years ago
|
});
|
||
|
|
||
|
it ('returns next state for FOLLOW_DISABLE', () => {
|
||
|
let action = { type: actions.FOLLOW_DISABLE };
|
||
|
let state = followReducer({ enabled: true }, action);
|
||
|
expect(state).to.have.property('enabled', false);
|
||
|
});
|
||
|
|
||
|
it ('returns next state for FOLLOW_KEY_PRESS', () => {
|
||
7 years ago
|
let action = { type: actions.FOLLOW_KEY_PRESS, key: 'a'};
|
||
|
let state = followReducer({ keys: '' }, action);
|
||
|
expect(state).to.have.deep.property('keys', 'a');
|
||
7 years ago
|
|
||
7 years ago
|
action = { type: actions.FOLLOW_KEY_PRESS, key: 'b'};
|
||
7 years ago
|
state = followReducer(state, action);
|
||
7 years ago
|
expect(state).to.have.deep.property('keys', 'ab');
|
||
7 years ago
|
});
|
||
|
|
||
|
it ('returns next state for FOLLOW_BACKSPACE', () => {
|
||
|
let action = { type: actions.FOLLOW_BACKSPACE };
|
||
7 years ago
|
let state = followReducer({ keys: 'ab' }, action);
|
||
|
expect(state).to.have.deep.property('keys', 'a');
|
||
7 years ago
|
|
||
|
state = followReducer(state, action);
|
||
7 years ago
|
expect(state).to.have.deep.property('keys', '');
|
||
7 years ago
|
|
||
|
state = followReducer(state, action);
|
||
7 years ago
|
expect(state).to.have.deep.property('keys', '');
|
||
7 years ago
|
});
|
||
|
});
|