Guest User

Untitled

a guest
Jun 19th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. it('NEWS_GET_SUCCESS', () => {
  2. const action = {
  3. type: t.NEWS_GET_SUCCESS,
  4. payload: [1, 2, 3], // тот самый action.payload
  5. }
  6.  
  7. expect(reducer(initialState, action)).toEqual({
  8. ...initialState,
  9. isLoading: false,
  10. data: action.payload, // который мы кладем в data
  11. })
  12. })
Add Comment
Please, Sign In to add comment