test('rounds times within the same week to zero', () => {
    const course = { start: '2017-07-02', timeline_start: '2017-07-05' };
    const output = CourseDateUtils.weeksBeforeTimeline(course);
    expect(output).toBe(0);
  });