aboutsummaryrefslogtreecommitdiff
path: root/test/background/actions/find.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/background/actions/find.test.js')
-rw-r--r--test/background/actions/find.test.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/background/actions/find.test.js b/test/background/actions/find.test.js
new file mode 100644
index 0000000..6b0b846
--- /dev/null
+++ b/test/background/actions/find.test.js
@@ -0,0 +1,12 @@
+import actions from 'background/actions';
+import * as findActions from 'background/actions/find';
+
+describe("find actions", () => {
+ describe("setKeyword", () => {
+ it('create FIND_SET_KEYWORD action', () => {
+ let action = findActions.setKeyword('banana');
+ expect(action.type).to.equal(actions.FIND_SET_KEYWORD);
+ expect(action.keyword).to.equal('banana');
+ });
+ });
+});