diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-03-04 17:57:56 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2018-03-04 17:57:56 +0900 |
commit | 37410b874f89de4907ba038244318129835e8157 (patch) | |
tree | f9f3c8e0efc1fcd7117b2b681145464a3585781a /test/console/reducers | |
parent | 0211d7781fffdb0f4e9a5e523f0f6ea24c5c8db8 (diff) |
add hide action for console
Diffstat (limited to 'test/console/reducers')
-rw-r--r-- | test/console/reducers/console.test.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/test/console/reducers/console.test.js b/test/console/reducers/console.test.js index 438d513..d196011 100644 --- a/test/console/reducers/console.test.js +++ b/test/console/reducers/console.test.js @@ -13,6 +13,12 @@ describe("console reducer", () => { expect(state).to.have.property('itemSelection', -1); }); + it('return next state for CONSOLE_HIDE', () => { + let action = { type: actions.CONSOLE_HIDE }; + let state = reducer({ mode: 'error' }, action); + expect(state).to.have.property('mode', ''); + }) + it('return next state for CONSOLE_SHOW_COMMAND', () => { let action = { type: actions.CONSOLE_SHOW_COMMAND, text: 'open ' }; let state = reducer({}, action); |