test('render title as today if offset is zero', () => {
    const wrapper = shallow(<HeaderDate offset={0}>{today}</HeaderDate>);
    expect(wrapper.text()).toMatch('Today');
  });