test('should return the initial state', () => {
    const state = reducer(undefined, { type: null });
    expect(state).toEqual(initialState);
  });