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.js7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/console/actions/console.test.js b/test/console/actions/console.test.js
index 9af13d4..77855cd 100644
--- a/test/console/actions/console.test.js
+++ b/test/console/actions/console.test.js
@@ -1,8 +1,13 @@
-import { expect } from "chai";
import actions from 'console/actions';
import * as consoleActions from 'console/actions/console';
describe("console actions", () => {
+ describe('hide', () => {
+ it('create CONSOLE_HIDE action', () => {
+ let action = consoleActions.hide();
+ expect(action.type).to.equal(actions.CONSOLE_HIDE);
+ });
+ });
describe("showCommand", () => {
it('create CONSOLE_SHOW_COMMAND action', () => {
let action = consoleActions.showCommand('hello');