-
-
Save shmidtelson/a2042a92ca5f3d701ebbb7b6eabf3980 to your computer and use it in GitHub Desktop.
qweqwe
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import reducer, { initialState } from './reducer' | |
import * as t from './actionTypes' | |
describe('session reducer', () => { | |
it('should return the initial state', () => { | |
expect(reducer(undefined, {})).toEqual(initialState) | |
}) | |
it('LOG_IN_REQUEST', () => { | |
const action = { // РАБ СИСТЕМЫ // САМ РАБ | |
type: t.LOG_IN_REQUEST, | |
} | |
expect(reducer(initialState, action)).toEqual({ | |
...initialState, | |
isLoading: true, | |
errorMsg: null, | |
}) | |
}) | |
it('LOG_IN_SUCCESS', () => { | |
const action = { | |
type: t.LOG_IN_SUCCESS, | |
payload: { | |
email: '[email protected]', | |
}, | |
errorMsg: null, | |
} | |
expect(reducer(initialState, action)).toEqual({ | |
...initialState, | |
isLoading: false, | |
user: { | |
name: '[email protected]', | |
}, | |
errorMsg: null, | |
}) | |
}) | |
it('LOG_IN_FAILURE', () => { | |
const action = { | |
type: t.LOG_IN_FAILURE, | |
payload: { | |
errorMsg: 'something going wrong', | |
}, | |
error: true, | |
} | |
expect(reducer(initialState, action)).toEqual({ | |
...initialState, | |
isLoading: false, | |
errorMsg: 'something going wrong', | |
}) | |
}) | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment