-
Notifications
You must be signed in to change notification settings - Fork 240
/
Copy pathrequire-to-throw-message.ts
43 lines (39 loc) · 1.08 KB
/
require-to-throw-message.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
import { createRule, getAccessorValue, parseJestFnCall } from './utils';
export default createRule({
name: __filename,
meta: {
docs: {
description: 'Require a message for `toThrow()`',
},
messages: {
addErrorMessage: 'Add an error message to {{ matcherName }}()',
},
type: 'suggestion',
schema: [],
},
defaultOptions: [],
create(context) {
return {
CallExpression(node) {
const jestFnCall = parseJestFnCall(node, context);
if (jestFnCall?.type !== 'expect') {
return;
}
const { matcher } = jestFnCall;
const matcherName = getAccessorValue(matcher);
if (
jestFnCall.args.length === 0 &&
['toThrow', 'toThrowError'].includes(matcherName) &&
!jestFnCall.modifiers.some(nod => getAccessorValue(nod) === 'not')
) {
// Look for `toThrow` calls with no arguments.
context.report({
messageId: 'addErrorMessage',
data: { matcherName },
node: matcher,
});
}
},
};
},
});