jest-extended
Version:
Additional Jest matchers
21 lines (20 loc) • 756 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.toBeArray = toBeArray;
function toBeArray(expected) {
// @ts-expect-error OK to have implicit any for this.utils
const { matcherHint, printReceived } = this.utils;
const pass = Array.isArray(expected);
return {
pass,
message: () => pass
? matcherHint('.not.toBeArray', 'received', '') +
'\n\n' +
'Expected value to not be an array received:\n' +
` ${printReceived(expected)}`
: matcherHint('.toBeArray', 'received', '') +
'\n\n' +
'Expected value to be an array received:\n' +
` ${printReceived(expected)}`,
};
}