aboutsummaryrefslogtreecommitdiff
path: root/test/content/reducers/find.test.js
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2018-03-07 21:05:52 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2018-03-07 21:05:52 +0900
commit92f8365be7127c3fa0276b1a6e890571f634622e (patch)
tree0de3603c8cffef056584413ef8a5a0dc051b8d8f /test/content/reducers/find.test.js
parent24e72aa6e079009d4c24c7f6be6bfb82c21e6643 (diff)
set find keyword from background
Diffstat (limited to 'test/content/reducers/find.test.js')
-rw-r--r--test/content/reducers/find.test.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/content/reducers/find.test.js b/test/content/reducers/find.test.js
index 93625da..908b01b 100644
--- a/test/content/reducers/find.test.js
+++ b/test/content/reducers/find.test.js
@@ -5,7 +5,7 @@ import findReducer from 'content/reducers/find';
describe("find reducer", () => {
it('return the initial state', () => {
let state = findReducer(undefined, {});
- expect(state).to.have.property('keyword', '');
+ expect(state).to.have.property('keyword', null);
expect(state).to.have.property('found', false);
});