aboutsummaryrefslogtreecommitdiff
path: root/test/console/actions/console.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/console/actions/console.test.js')
-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);
});
});