aboutsummaryrefslogtreecommitdiff
path: root/test/content/reducers
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2017-11-11 18:45:10 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2017-11-11 18:51:32 +0900
commitfe8a9283172e43e29480c4293c34565859c04c32 (patch)
treed9160c76f4c3435b0859669f1254b12eb92d183f /test/content/reducers
parente3409b3aaea81eca6e10df0b1880067ddf4df961 (diff)
remove unused actions and fix test
Diffstat (limited to 'test/content/reducers')
-rw-r--r--test/content/reducers/find.test.js33
1 files changed, 10 insertions, 23 deletions
diff --git a/test/content/reducers/find.test.js b/test/content/reducers/find.test.js
index 3aacbd9..93625da 100644
--- a/test/content/reducers/find.test.js
+++ b/test/content/reducers/find.test.js
@@ -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: '' };
-
- state = findReducer(state, action);
-
- expect(state.keyword).is.equal('my-search');
+ let action = {
+ type: actions.FIND_SET_KEYWORD,
+ keyword: 'xyz',
+ found: true,
+ };
+ let state = findReducer({}, action);
+
+ expect(state.keyword).is.equal('xyz');
+ expect(state.found).to.be.true;
});
});