it('should hide next nav button', () => {
    const next = getNextNavButton(fixture);
    setMonth(fixture, {hideRightArrow: true});
    expect(next.style.visibility).toBe('hidden');
  });