Created
September 26, 2020 08:49
-
-
Save janhesters/3600503b552feaba4c8ba022f796f84a to your computer and use it in GitHub Desktop.
Avoid exporting your initial state.
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
// π Avoid exporting your initial state π« | |
export const initialState = { | |
wrongKey: 'foo', | |
correctKey: 'wrong value' | |
/* missing keys ... */ | |
}; | |
assert({ | |
given: 'no arguments', | |
should: 'return the valid initial state', | |
actual: reducer(), | |
expected: initialState, // π£ Missed errors π | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment