remove unused actions and fix test

This commit is contained in:
Shin'ya Ueoka 2017-11-11 18:45:10 +09:00
parent e3409b3aae
commit fe8a928317
5 changed files with 10 additions and 61 deletions

View file

@ -1,19 +0,0 @@
import { expect } from "chai";
import actions from 'content/actions';
import * as findActions from 'content/actions/find';
describe("find actions", () => {
describe("show", () => {
it('create FIND_SHOW action', () => {
let action = findActions.show();
expect(action.type).to.equal(actions.FIND_SHOW);
});
});
describe("hide", () => {
it('create FIND_HIDE action', () => {
let action = findActions.hide();
expect(action.type).to.equal(actions.FIND_HIDE);
});
});
});

View file

@ -5,32 +5,19 @@ import findReducer from 'content/reducers/find';
describe("find reducer", () => {
it('return the initial state', () => {
let state = findReducer(undefined, {});
expect(state).to.have.property('enabled', false);
expect(state).to.have.property('keyword', '');
});
it('return next state for FIND_SHOW', () => {
let action = { type: actions.FIND_SHOW };
let prev = { enabled: false };
let state = findReducer(prev, action);
expect(state.enabled).is.equal(true);
});
it('return next state for FIND_HIDE', () => {
let action = { type: actions.FIND_HIDE };
let prev = { enabled: true };
let state = findReducer(prev, action);
expect(state.enabled).is.equal(false);
expect(state).to.have.property('found', false);
});
it('return next state for FIND_SET_KEYWORD', () => {
let action = { type: actions.FIND_SET_KEYWORD, keyword: 'my-search' };
let state = { enabled: true, keyword: '' };
let action = {
type: actions.FIND_SET_KEYWORD,
keyword: 'xyz',
found: true,
};
let state = findReducer({}, action);
state = findReducer(state, action);
expect(state.keyword).is.equal('my-search');
expect(state.keyword).is.equal('xyz');
expect(state.found).to.be.true;
});
});