From 956dd937d33d167440d9d637f67ebff5d72353e5 Mon Sep 17 00:00:00 2001 From: Shin'ya Ueoka Date: Tue, 7 Nov 2017 21:20:22 +0900 Subject: console as redux architecture --- test/console/reducers/console.test.js | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'test/console/reducers') diff --git a/test/console/reducers/console.test.js b/test/console/reducers/console.test.js index 280d1b7..438d513 100644 --- a/test/console/reducers/console.test.js +++ b/test/console/reducers/console.test.js @@ -43,6 +43,16 @@ describe("console reducer", () => { expect(state).to.have.property('mode', 'error'); }); + it('return next state for CONSOLE_SET_CONSOLE_TEXT', () => { + let action = { + type: actions.CONSOLE_SET_CONSOLE_TEXT, + consoleText: 'hello world' + } + let state = reducer({}, action) + + expect(state).to.have.property('consoleText', 'hello world'); + }); + it ('return next state for CONSOLE_SET_COMPLETIONS', () => { let state = { groupSelection: 0, -- cgit v1.2.3