mirror of
https://github.com/joelwmale/webhook-action.git
synced 2024-11-29 10:55:21 +01:00
48 lines
No EOL
1.3 KiB
JavaScript
48 lines
No EOL
1.3 KiB
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.default = void 0;
|
|
var _utils = require("./utils");
|
|
var _default = (0, _utils.createRule)({
|
|
name: __filename,
|
|
meta: {
|
|
docs: {
|
|
category: 'Best Practices',
|
|
description: 'Require a message for `toThrow()`',
|
|
recommended: false
|
|
},
|
|
messages: {
|
|
addErrorMessage: 'Add an error message to {{ matcherName }}()'
|
|
},
|
|
type: 'suggestion',
|
|
schema: []
|
|
},
|
|
defaultOptions: [],
|
|
create(context) {
|
|
return {
|
|
CallExpression(node) {
|
|
const jestFnCall = (0, _utils.parseJestFnCall)(node, context);
|
|
if ((jestFnCall === null || jestFnCall === void 0 ? void 0 : jestFnCall.type) !== 'expect') {
|
|
return;
|
|
}
|
|
const {
|
|
matcher
|
|
} = jestFnCall;
|
|
const matcherName = (0, _utils.getAccessorValue)(matcher);
|
|
if (jestFnCall.args.length === 0 && ['toThrow', 'toThrowError'].includes(matcherName) && !jestFnCall.modifiers.some(nod => (0, _utils.getAccessorValue)(nod) === 'not')) {
|
|
// Look for `toThrow` calls with no arguments.
|
|
context.report({
|
|
messageId: 'addErrorMessage',
|
|
data: {
|
|
matcherName
|
|
},
|
|
node: matcher
|
|
});
|
|
}
|
|
}
|
|
};
|
|
}
|
|
});
|
|
exports.default = _default; |