jest-extended
Version:
Additional Jest matchers
21 lines (20 loc) • 900 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.toBeAfterOrEqualTo = toBeAfterOrEqualTo;
function toBeAfterOrEqualTo(actual, expected) {
// @ts-expect-error OK to have implicit any for this.utils
const { printReceived, matcherHint } = this.utils;
const pass = actual instanceof Date && actual >= expected;
return {
pass,
message: () => pass
? matcherHint('.not.toBeAfterOrEqualTo', 'received', '') +
'\n\n' +
`Expected date to be after or equal to ${printReceived(expected)} but received:\n` +
` ${printReceived(actual)}`
: matcherHint('.toBeAfterOrEqualTo', 'received', '') +
'\n\n' +
`Expected date to be after or equal to ${printReceived(expected)} but received:\n` +
` ${printReceived(actual)}`,
};
}