May 2019
Intermediate to advanced
496 pages
10h 38m
English
Let's make a start by building the reducer itself, before adding buttons to exercise the new functionality:
import { withUndoRedo } from '../../src/reducers/withUndoRedo';describe('withUndoRedo', () => { let decoratedReducerSpy; let reducer; beforeEach(() => { decoratedReducerSpy = jest.fn(); reducer = withUndoRedo(decoratedReducerSpy); }); describe('when initializing state', () => { it('calls the decorated ...Read now
Unlock full access