Last active
August 5, 2018 18:57
-
-
Save alaboudi/1dde05382592900898aa0a41588f82b4 to your computer and use it in GitHub Desktop.
Incorrect Reducer Initial State Test
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 { someReducer, SOME_REDUCER_INITIAL_STATE } from './someReducer.js' | |
describe('someReducer', () => { | |
it('should return the correct initial state', () => { | |
expect(someReducer(undefined, {}).toEqual(SOME_REDUCER_INITIAL_STATE); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment