Our docs page at https://redux.js.org/usage/writing-tests recommends an "integration"-style testing approach. But, the example tests are currently expect(counterReducer(state, action)).toEqual(expected).
There was a previous PR to the CRA+JS template that tried to switch the tests over to "integration"-style:
Our docs page at https://redux.js.org/usage/writing-tests recommends an "integration"-style testing approach. But, the example tests are currently
expect(counterReducer(state, action)).toEqual(expected)
.There was a previous PR to the CRA+JS template that tried to switch the tests over to "integration"-style:
We should do something along those lines for the updated templates.