diff options
Diffstat (limited to 'test')
-rw-r--r-- | test/reducers/follow.test.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/reducers/follow.test.js b/test/reducers/follow.test.js index 0b5e3bd..e1db680 100644 --- a/test/reducers/follow.test.js +++ b/test/reducers/follow.test.js @@ -15,6 +15,7 @@ describe('follow reducer', () => { let state = followReducer({ enabled: false, newTab: false }, action); expect(state).to.have.property('enabled', true); expect(state).to.have.property('newTab', true); + expect(state).to.have.property('keys', ''); }); it ('returns next state for FOLLOW_DISABLE', () => { |