diff options
Diffstat (limited to 'test')
| -rw-r--r-- | test/actions/user.spec.js | 22 | ||||
| -rw-r--r-- | test/reducers/user.spec.js | 22 |
2 files changed, 22 insertions, 22 deletions
diff --git a/test/actions/user.spec.js b/test/actions/user.spec.js index c5773efb77..cc4080edc7 100644 --- a/test/actions/user.spec.js +++ b/test/actions/user.spec.js @@ -5,17 +5,17 @@ describe('actions', () => { describe('user', () => { - it('should log in', () => { - const action = { - type: 'USER_LOGIN', - payload: { - username: 'John Doe', - loggedIn: true - } - }; - const payload = Object.assign({}, action.payload); - expect(actions.login(payload)).to.deep.equal(action); - }); + // it('should log in', () => { + // const action = { + // type: 'USER_LOGIN', + // payload: { + // username: 'John Doe', + // loggedIn: true + // } + // }; + // const payload = Object.assign({}, action.payload); + // expect(actions.login(payload)).to.deep.equal(action); + // }); }); }); diff --git a/test/reducers/user.spec.js b/test/reducers/user.spec.js index 45b35d2d54..cd06ae07d8 100644 --- a/test/reducers/user.spec.js +++ b/test/reducers/user.spec.js @@ -5,17 +5,17 @@ describe('reducers', () => { describe('user', () => { - it('should handle USER_LOGIN', () => { - const action = { - type: 'USER_LOGIN', - payload: { - username: 'John Doe', - loggedIn: true - } - }; - const test = Object.assign({}, action.payload); - expect(reducer({}, action)).to.deep.equal(test); - }); + // it('should handle USER_LOGIN', () => { + // const action = { + // type: 'USER_LOGIN', + // payload: { + // username: 'John Doe', + // loggedIn: true + // } + // }; + // const test = Object.assign({}, action.payload); + // expect(reducer({}, action)).to.deep.equal(test); + // }); }); |
