forked from testing-library/eslint-plugin-testing-library
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathno-wait-for-multiple-assertions.ts
93 lines (81 loc) · 2.18 KB
/
no-wait-for-multiple-assertions.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
import { TSESTree } from '@typescript-eslint/utils';
import { createTestingLibraryRule } from '../create-testing-library-rule';
import {
getPropertyIdentifierNode,
isExpressionStatement,
} from '../node-utils';
export const RULE_NAME = 'no-wait-for-multiple-assertions';
export type MessageIds = 'noWaitForMultipleAssertion';
type Options = [];
export default createTestingLibraryRule<Options, MessageIds>({
name: RULE_NAME,
meta: {
type: 'suggestion',
docs: {
description:
'Disallow the use of multiple `expect` calls inside `waitFor`',
recommendedConfig: {
dom: 'error',
angular: 'error',
react: 'error',
vue: 'error',
svelte: 'error',
marko: 'error',
},
},
messages: {
noWaitForMultipleAssertion:
'Avoid using multiple assertions within `waitFor` callback',
},
schema: [],
},
defaultOptions: [],
create(context, _, helpers) {
function getExpectNodes(
body: Array<TSESTree.Node>
): Array<TSESTree.ExpressionStatement> {
return body.filter((node) => {
if (!isExpressionStatement(node)) {
return false;
}
const expressionIdentifier = getPropertyIdentifierNode(node);
if (!expressionIdentifier) {
return false;
}
return expressionIdentifier.name === 'expect';
}) as Array<TSESTree.ExpressionStatement>;
}
function reportMultipleAssertion(node: TSESTree.BlockStatement) {
if (!node.parent) {
return;
}
const callExpressionNode = node.parent.parent as TSESTree.CallExpression;
const callExpressionIdentifier =
getPropertyIdentifierNode(callExpressionNode);
if (!callExpressionIdentifier) {
return;
}
if (!helpers.isAsyncUtil(callExpressionIdentifier, ['waitFor'])) {
return;
}
const expectNodes = getExpectNodes(node.body);
if (expectNodes.length <= 1) {
return;
}
for (let i = 0; i < expectNodes.length; i++) {
if (i !== 0) {
context.report({
node: expectNodes[i],
messageId: 'noWaitForMultipleAssertion',
});
}
}
}
return {
'CallExpression > ArrowFunctionExpression > BlockStatement':
reportMultipleAssertion,
'CallExpression > FunctionExpression > BlockStatement':
reportMultipleAssertion,
};
},
});