eslint-plugin-jest 27.0.0-next.2 → 27.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -0
- package/docs/rules/prefer-each.md +54 -0
- package/lib/rules/prefer-each.js +98 -0
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -225,6 +225,7 @@ installations requiring long-term consistency.
|
|
|
225
225
|
| [no-test-return-statement](docs/rules/no-test-return-statement.md) | Disallow explicitly returning from tests | | |
|
|
226
226
|
| [prefer-called-with](docs/rules/prefer-called-with.md) | Suggest using `toBeCalledWith()` or `toHaveBeenCalledWith()` | | |
|
|
227
227
|
| [prefer-comparison-matcher](docs/rules/prefer-comparison-matcher.md) | Suggest using the built-in comparison matchers | | ![fixable][] |
|
|
228
|
+
| [prefer-each](docs/rules/prefer-each.md) | Prefer using `.each` rather than manual loops | | |
|
|
228
229
|
| [prefer-equality-matcher](docs/rules/prefer-equality-matcher.md) | Suggest using the built-in equality matchers | | ![suggest][] |
|
|
229
230
|
| [prefer-expect-assertions](docs/rules/prefer-expect-assertions.md) | Suggest using `expect.assertions()` OR `expect.hasAssertions()` | | ![suggest][] |
|
|
230
231
|
| [prefer-expect-resolves](docs/rules/prefer-expect-resolves.md) | Prefer `await expect(...).resolves` over `expect(await ...)` syntax | | ![fixable][] |
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
# Prefer using `.each` rather than manual loops (`prefer-each`)
|
|
2
|
+
|
|
3
|
+
Reports where you might be able to use `.each` instead of native loops.
|
|
4
|
+
|
|
5
|
+
## Rule details
|
|
6
|
+
|
|
7
|
+
This rule triggers a warning if you use test case functions like `describe`,
|
|
8
|
+
`test`, and `it`, in a native loop - generally you should be able to use `.each`
|
|
9
|
+
instead which gives better output and makes it easier to run specific cases.
|
|
10
|
+
|
|
11
|
+
Examples of **incorrect** code for this rule:
|
|
12
|
+
|
|
13
|
+
```js
|
|
14
|
+
for (const number of getNumbers()) {
|
|
15
|
+
it('is greater than five', function () {
|
|
16
|
+
expect(number).toBeGreaterThan(5);
|
|
17
|
+
});
|
|
18
|
+
}
|
|
19
|
+
|
|
20
|
+
for (const [input, expected] of data) {
|
|
21
|
+
beforeEach(() => setupSomething(input));
|
|
22
|
+
|
|
23
|
+
test(`results in ${expected}`, () => {
|
|
24
|
+
expect(doSomething()).toBe(expected);
|
|
25
|
+
});
|
|
26
|
+
}
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
Examples of **correct** code for this rule:
|
|
30
|
+
|
|
31
|
+
```js
|
|
32
|
+
it.each(getNumbers())(
|
|
33
|
+
'only returns numbers that are greater than seven',
|
|
34
|
+
number => {
|
|
35
|
+
expect(number).toBeGreaterThan(7);
|
|
36
|
+
},
|
|
37
|
+
);
|
|
38
|
+
|
|
39
|
+
describe.each(data)('when input is %s', ([input, expected]) => {
|
|
40
|
+
beforeEach(() => setupSomething(input));
|
|
41
|
+
|
|
42
|
+
test(`results in ${expected}`, () => {
|
|
43
|
+
expect(doSomething()).toBe(expected);
|
|
44
|
+
});
|
|
45
|
+
});
|
|
46
|
+
|
|
47
|
+
// we don't warn on loops _in_ test functions because those typically involve
|
|
48
|
+
// complex setup that is better done in the test function itself
|
|
49
|
+
it('returns numbers that are greater than five', () => {
|
|
50
|
+
for (const number of getNumbers()) {
|
|
51
|
+
expect(number).toBeGreaterThan(5);
|
|
52
|
+
}
|
|
53
|
+
});
|
|
54
|
+
```
|
|
@@ -0,0 +1,98 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
|
|
8
|
+
var _utils = require("./utils");
|
|
9
|
+
|
|
10
|
+
var _default = (0, _utils.createRule)({
|
|
11
|
+
name: __filename,
|
|
12
|
+
meta: {
|
|
13
|
+
docs: {
|
|
14
|
+
category: 'Best Practices',
|
|
15
|
+
description: 'Prefer using `.each` rather than manual loops',
|
|
16
|
+
recommended: false
|
|
17
|
+
},
|
|
18
|
+
messages: {
|
|
19
|
+
preferEach: 'prefer using `{{ fn }}.each` rather than a manual loop'
|
|
20
|
+
},
|
|
21
|
+
type: 'suggestion',
|
|
22
|
+
schema: []
|
|
23
|
+
},
|
|
24
|
+
defaultOptions: [],
|
|
25
|
+
|
|
26
|
+
create(context) {
|
|
27
|
+
const jestFnCalls = [];
|
|
28
|
+
let inTestCaseCall = false;
|
|
29
|
+
|
|
30
|
+
const recommendFn = () => {
|
|
31
|
+
if (jestFnCalls.length === 1 && jestFnCalls[0] === 'test') {
|
|
32
|
+
return 'it';
|
|
33
|
+
}
|
|
34
|
+
|
|
35
|
+
return 'describe';
|
|
36
|
+
};
|
|
37
|
+
|
|
38
|
+
const enterForLoop = () => {
|
|
39
|
+
if (jestFnCalls.length === 0 || inTestCaseCall) {
|
|
40
|
+
return;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
jestFnCalls.length = 0;
|
|
44
|
+
};
|
|
45
|
+
|
|
46
|
+
const exitForLoop = node => {
|
|
47
|
+
if (jestFnCalls.length === 0 || inTestCaseCall) {
|
|
48
|
+
return;
|
|
49
|
+
}
|
|
50
|
+
|
|
51
|
+
context.report({
|
|
52
|
+
node,
|
|
53
|
+
messageId: 'preferEach',
|
|
54
|
+
data: {
|
|
55
|
+
fn: recommendFn()
|
|
56
|
+
}
|
|
57
|
+
});
|
|
58
|
+
jestFnCalls.length = 0;
|
|
59
|
+
};
|
|
60
|
+
|
|
61
|
+
return {
|
|
62
|
+
ForStatement: enterForLoop,
|
|
63
|
+
'ForStatement:exit': exitForLoop,
|
|
64
|
+
ForInStatement: enterForLoop,
|
|
65
|
+
'ForInStatement:exit': exitForLoop,
|
|
66
|
+
ForOfStatement: enterForLoop,
|
|
67
|
+
'ForOfStatement:exit': exitForLoop,
|
|
68
|
+
|
|
69
|
+
CallExpression(node) {
|
|
70
|
+
const {
|
|
71
|
+
type: jestFnCallType
|
|
72
|
+
} = (0, _utils.parseJestFnCall)(node, context) ?? {};
|
|
73
|
+
|
|
74
|
+
if (jestFnCallType === 'hook' || jestFnCallType === 'describe' || jestFnCallType === 'test') {
|
|
75
|
+
jestFnCalls.push(jestFnCallType);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
if (jestFnCallType === 'test') {
|
|
79
|
+
inTestCaseCall = true;
|
|
80
|
+
}
|
|
81
|
+
},
|
|
82
|
+
|
|
83
|
+
'CallExpression:exit'(node) {
|
|
84
|
+
const {
|
|
85
|
+
type: jestFnCallType
|
|
86
|
+
} = (0, _utils.parseJestFnCall)(node, context) ?? {};
|
|
87
|
+
|
|
88
|
+
if (jestFnCallType === 'test') {
|
|
89
|
+
inTestCaseCall = false;
|
|
90
|
+
}
|
|
91
|
+
}
|
|
92
|
+
|
|
93
|
+
};
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
});
|
|
97
|
+
|
|
98
|
+
exports.default = _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "eslint-plugin-jest",
|
|
3
|
-
"version": "27.0.0
|
|
3
|
+
"version": "27.0.0",
|
|
4
4
|
"description": "ESLint rules for Jest",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eslint",
|
|
@@ -151,7 +151,7 @@
|
|
|
151
151
|
"optional": true
|
|
152
152
|
}
|
|
153
153
|
},
|
|
154
|
-
"packageManager": "yarn@3.2.
|
|
154
|
+
"packageManager": "yarn@3.2.3",
|
|
155
155
|
"engines": {
|
|
156
156
|
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
|
|
157
157
|
}
|