Plugin for Chai to use .toISODate() for date comparisons
import * as chai from 'chai';
import { isoDateTime } from 'chai-isodatetime';
chai.use(isoDateTime);
- equalDate - Checks if both dates equal each other using .toISODate() for comparison
const date1 = new Date(2013, 4, 30, 16, 5);
const date2 = new Date(2013, 4, 30, 17);
date1.should.equalDate(date2);
expect(date1).to.equalDate(date2)
assert.equalDate(date1, date2)
Thanks to chai-datetime for getting me most of the way there!
MIT