You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I test all my reducers' default state by passing an empty action, and I've had to go through my tests and change them to use an invalid/unknown action instead.
The code revert referenced in #177 results in
handleAction
always running the reducer if an action with notype
is dispatched:It seems to me that it should be:
…so that the reducer simply returns the existing state if no
type
is provided in an action.The text was updated successfully, but these errors were encountered: