aboutsummaryrefslogtreecommitdiff
path: root/test/content/actions
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/actions
parente3409b3aaea81eca6e10df0b1880067ddf4df961 (diff)
remove unused actions and fix test
Diffstat (limited to 'test/content/actions')
-rw-r--r--test/content/actions/find.test.js19
1 files changed, 0 insertions, 19 deletions
diff --git a/test/content/actions/find.test.js b/test/content/actions/find.test.js
deleted file mode 100644
index 676e105..0000000
--- a/test/content/actions/find.test.js
+++ /dev/null
@@ -1,19 +0,0 @@
-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);
- });
- });
-});