describe('registerDispatch', () => {
    test('should set up new dispatch', () => {
      const instance = new Reducer();
      instance.registerDispatch('fn', 'method');
      expect(instance.dispatches).toEqual({ method: 'fn' });