aboutsummaryrefslogtreecommitdiff
path: root/test/console/actions
diff options
context:
space:
mode:
authorShin'ya Ueoka <ueokande@i-beam.org>2017-10-08 18:41:44 +0900
committerShin'ya Ueoka <ueokande@i-beam.org>2017-10-08 19:09:25 +0900
commitb0d2b5328107a9a2018132938fb5a9efcd77fc50 (patch)
treef66bc49efc0d7ca3a6f5af3f7330f10941cbeadd /test/console/actions
parentf6996a2274f3293d7c5860174dd224b28877e108 (diff)
use mode in console message
Diffstat (limited to 'test/console/actions')
-rw-r--r--test/console/actions/console.test.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/console/actions/console.test.js b/test/console/actions/console.test.js
index dd04c85..a2c906f 100644
--- a/test/console/actions/console.test.js
+++ b/test/console/actions/console.test.js
@@ -20,9 +20,9 @@ describe("console actions", () => {
});
describe("hide", () => {
- it('create CONSOLE_HIDE action', () => {
- let action = consoleActions.hide();
- expect(action.type).to.equal(actions.CONSOLE_HIDE);
+ it('create CONSOLE_HIDE_COMMAND action', () => {
+ let action = consoleActions.hideCommand();
+ expect(action.type).to.equal(actions.CONSOLE_HIDE_COMMAND);
});
});