Const
Asserts that the subject is equal to another date within a tolerance.
const date1 = new Date('2023-01-01T10:00:00.000Z');const date2 = new Date('2023-01-01T10:00:00.500Z');expect(date1, 'to equal', date2, 'within', '1 second'); // passesexpect(date1, 'to equal', date2, 'within', '100 milliseconds'); // fails Copy
const date1 = new Date('2023-01-01T10:00:00.000Z');const date2 = new Date('2023-01-01T10:00:00.500Z');expect(date1, 'to equal', date2, 'within', '1 second'); // passesexpect(date1, 'to equal', date2, 'within', '100 milliseconds'); // fails
date-like-to-equal-date-like-within-duration
date
Asserts that the subject is equal to another date within a tolerance.