UNPKG

jest-date

Version:

Custom jest matchers to test dates

19 lines (18 loc) 546 B
/// <reference types="jest" /> declare global { namespace jest { interface Matchers<R, T> { /** * Assert whether a date is after another or not. * @param {Date} date - Date to compare to * @example * expect(new Date(2020, 8)).toBeAfter(new Date(2017, 8)) */ toBeAfter(date: Date): R; } } } export declare function toBeAfter(this: jest.MatcherUtils, received: Date, expected: Date): { pass: boolean; message: () => string; };