isoDates.forEach(isoDate => {
      const validation = UtcOnlyIsoDateFromString.decode(isoDate);
      expect(isRight(validation)).toBeTruthy();
      expect(UtcOnlyIsoDateFromString.is(new Date())).toBeTruthy();
    });