aboutsummaryrefslogtreecommitdiff
path: root/test/content/actions/find.test.js
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2017-11-06 22:03:53 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2017-11-11 16:16:01 +0900
commite1c70769ea235a78da463ab21de40582381bec78 (patch)
treeed8a8da2f7f4cd0f34dec9691e5ec1e36bfe6df4 /test/content/actions/find.test.js
parentbe37c42d28e4d32609b5972ee937a269d18c0f67 (diff)
add find action and reducer
Diffstat (limited to 'test/content/actions/find.test.js')
-rw-r--r--test/content/actions/find.test.js19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/content/actions/find.test.js b/test/content/actions/find.test.js
new file mode 100644
index 0000000..676e105
--- /dev/null
+++ b/test/content/actions/find.test.js
@@ -0,0 +1,19 @@
+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);
+ });
+ });
+});