aboutsummaryrefslogtreecommitdiff
path: root/test/content/reducers/find.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/content/reducers/find.test.js')
-rw-r--r--test/content/reducers/find.test.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/test/content/reducers/find.test.js b/test/content/reducers/find.test.js
index 93625da..a8c30d7 100644
--- a/test/content/reducers/find.test.js
+++ b/test/content/reducers/find.test.js
@@ -1,11 +1,10 @@
-import { expect } from "chai";
import actions from 'content/actions';
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);
});