t.throws(()=>m(newDate('2017-11-25T12:00:00Z')asany,m.date.before(newDate('2017-11-25T12:00:00Z'))),'Expected date 2017-11-25T12:00:00.000Z to be before 2017-11-25T12:00:00.000Z');
t.throws(()=>m(newDate('2017-11-25T12:00:00Z')asany,m.date.label('foo').before(newDate('2017-11-25T12:00:00Z'))),'Expected date `foo` 2017-11-25T12:00:00.000Z to be before 2017-11-25T12:00:00.000Z');
t.throws(()=>m(newDate('2017-11-25T12:00:00Z')asany,m.date.before(newDate('2017-11-25T12:00:00Z')).label('foo')),'Expected date `foo` 2017-11-25T12:00:00.000Z to be before 2017-11-25T12:00:00.000Z');
t.throws(()=>m(newDate('2017-11-26T12:00:00Z')asany,m.date.after(newDate('2017-11-26T12:00:00Z'))),'Expected date 2017-11-26T12:00:00.000Z to be after 2017-11-26T12:00:00.000Z');