aboutsummaryrefslogtreecommitdiff
path: root/test/background/reducers/find.test.js
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2018-07-28 10:51:52 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2018-07-28 14:20:29 +0900
commitccdb0a2428bbdc56e8288442f844a4bb3b8f9a11 (patch)
treec1d653b3792917473bace600d12a071b35f6168c /test/background/reducers/find.test.js
parent66c23423f931bb66c59cd29cf9279a5de5d56535 (diff)
Clean old codes
Diffstat (limited to 'test/background/reducers/find.test.js')
-rw-r--r--test/background/reducers/find.test.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/background/reducers/find.test.js b/test/background/reducers/find.test.js
deleted file mode 100644
index c366223..0000000
--- a/test/background/reducers/find.test.js
+++ /dev/null
@@ -1,18 +0,0 @@
-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')
- });
-});