it('the prev month of `1483315200000` must be `12`', () => {
      const date = 1483315200000;
      const dateManager = new DateManager(date);
      expect(dateManager.prevMonth).to.equal(12);
    });