eslint-plugin-jest
Version:
ESLint rules for Jest
47 lines (46 loc) • 1.22 kB
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = void 0;
var _utils = require("./utils");
var _default = exports.default = (0, _utils.createRule)({
name: __filename,
meta: {
docs: {
description: 'Suggest using `toBeCalledWith()` or `toHaveBeenCalledWith()`'
},
messages: {
preferCalledWith: 'Prefer {{ matcherName }}With(/* expected args */)'
},
type: 'suggestion',
schema: []
},
defaultOptions: [],
create(context) {
return {
CallExpression(node) {
const jestFnCall = (0, _utils.parseJestFnCall)(node, context);
if (jestFnCall?.type !== 'expect') {
return;
}
if (jestFnCall.modifiers.some(nod => (0, _utils.getAccessorValue)(nod) === 'not')) {
return;
}
const {
matcher
} = jestFnCall;
const matcherName = (0, _utils.getAccessorValue)(matcher);
if (['toBeCalled', 'toHaveBeenCalled'].includes(matcherName)) {
context.report({
data: {
matcherName
},
messageId: 'preferCalledWith',
node: matcher
});
}
}
};
}
});
;