Last active
September 12, 2017 22:50
-
-
Save abachuk/a56e036643f896faa065140151a478dc to your computer and use it in GitHub Desktop.
This file contains hidden or 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 from './getPostsReducer'; | |
import * as types from '../actions/posts/getPostsReduxAction'; | |
import expect from 'expect'; | |
describe('team reducer', () => { | |
it('should return the initial state'); | |
it('should handle GET_POST_SUCCESS'); | |
it('should handle UPDATE_POST_SUCCESS'); | |
it('should handle GET_POST_FAIL'); | |
it('should handle GET_POST_START'); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment