diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-10-08 18:41:44 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-10-08 19:09:25 +0900 |
commit | b0d2b5328107a9a2018132938fb5a9efcd77fc50 (patch) | |
tree | f66bc49efc0d7ca3a6f5af3f7330f10941cbeadd /test/console/actions | |
parent | f6996a2274f3293d7c5860174dd224b28877e108 (diff) |
use mode in console message
Diffstat (limited to 'test/console/actions')
-rw-r--r-- | test/console/actions/console.test.js | 6 |
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); }); }); |