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.
19 lines
541 B
19 lines
541 B
7 years ago
|
import actions from 'background/actions';
|
||
|
import findReducer from 'background/reducers/find';
|
||
|
|
||
|
describe("find reducer", () => {
|
||
|
it('return the initial state', () => {
|
||
|
let state = findReducer(undefined, {});
|
||
|
expect(state).to.have.deep.property('keyword', null);
|
||
|
});
|
||
|
|
||
|
it('return next state for FIND_SET_KEYWORD', () => {
|
||
|
let action = {
|
||
|
type: actions.FIND_SET_KEYWORD,
|
||
|
keyword: 'cherry',
|
||
|
};
|
||
|
let state = findReducer(undefined, action);
|
||
|
expect(state).to.have.deep.property('keyword', 'cherry')
|
||
|
});
|
||
|
});
|