16. Update reducer tests
In this little section we will update our reducer tests to use our new types.
1. Use action creators in our reducer tests
Type our fake effect as an any to trick the TypeScript compiler and also add a StartSpinner action creator to the other test.
src/app/state/spinner/reducer.spec.ts
StackBlitz Link
Last updated