From 37410b874f89de4907ba038244318129835e8157 Mon Sep 17 00:00:00 2001
From: Shin'ya Ueoka <ueokande@i-beam.org>
Date: Sun, 4 Mar 2018 17:57:56 +0900
Subject: add hide action for console

---
 test/console/actions/console.test.js | 6 ++++++
 1 file changed, 6 insertions(+)

(limited to 'test/console/actions')

diff --git a/test/console/actions/console.test.js b/test/console/actions/console.test.js
index 9af13d4..1774431 100644
--- a/test/console/actions/console.test.js
+++ b/test/console/actions/console.test.js
@@ -3,6 +3,12 @@ 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');
-- 
cgit v1.2.3