aboutsummaryrefslogtreecommitdiff
path: root/test/console/actions
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2017-11-06 20:13:15 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2017-11-11 16:16:01 +0900
commitbe37c42d28e4d32609b5972ee937a269d18c0f67 (patch)
tree8b811c3dccd38292e8ecc14d0108a6352476a4f4 /test/console/actions
parentcb4b26e03f97ff2f1789f7a59efe2973ab1d0eb9 (diff)
show find in console
Diffstat (limited to 'test/console/actions')
-rw-r--r--test/console/actions/console.test.js7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/console/actions/console.test.js b/test/console/actions/console.test.js
index 3b02d4a..c96dd99 100644
--- a/test/console/actions/console.test.js
+++ b/test/console/actions/console.test.js
@@ -11,6 +11,13 @@ describe("console actions", () => {
});
});
+ describe("showFind", () => {
+ it('create CONSOLE_SHOW_FIND action', () => {
+ let action = consoleActions.showFind();
+ expect(action.type).to.equal(actions.CONSOLE_SHOW_FIND);
+ });
+ });
+
describe("showInfo", () => {
it('create CONSOLE_SHOW_INFO action', () => {
let action = consoleActions.showInfo('an info');