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