Skip to content

Instantly share code, notes, and snippets.

@janhesters
Created September 26, 2020 08:49
Show Gist options
  • Save janhesters/3600503b552feaba4c8ba022f796f84a to your computer and use it in GitHub Desktop.
Save janhesters/3600503b552feaba4c8ba022f796f84a to your computer and use it in GitHub Desktop.
Avoid exporting your initial state.
// πŸ‘‡ 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