Commit 9cb4ecc 1 parent eecc6e6 commit 9cb4ecc Copy full SHA for 9cb4ecc
File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -359,7 +359,7 @@ Manually fixable by
359
359
| [ padding-around-before-each-blocks] ( docs/rules/padding-around-before-each-blocks.md ) | Enforce padding around ` beforeEach ` blocks | | | π§ | |
360
360
| [ padding-around-describe-blocks] ( docs/rules/padding-around-describe-blocks.md ) | Enforce padding around ` describe ` blocks | | | π§ | |
361
361
| [ padding-around-expect-groups] ( docs/rules/padding-around-expect-groups.md ) | Enforce padding around ` expect ` groups | | | π§ | |
362
- | [ padding-around-test-blocks] ( docs/rules/padding-around-test-blocks.md ) | Enforce padding around afterAll blocks | | | π§ | |
362
+ | [ padding-around-test-blocks] ( docs/rules/padding-around-test-blocks.md ) | Enforce padding around ` test ` and ` it ` blocks | | | π§ | |
363
363
| [ prefer-called-with] ( docs/rules/prefer-called-with.md ) | Suggest using ` toBeCalledWith() ` or ` toHaveBeenCalledWith() ` | | | | |
364
364
| [ prefer-comparison-matcher] ( docs/rules/prefer-comparison-matcher.md ) | Suggest using the built-in comparison matchers | | | π§ | |
365
365
| [ prefer-each] ( docs/rules/prefer-each.md ) | Prefer using ` .each ` rather than manual loops | | | | |
Original file line number Diff line number Diff line change 1
- # Enforce padding around afterAll blocks (` padding-around-test-blocks ` )
1
+ # Enforce padding around ` test ` and ` it ` blocks (` padding-around-test-blocks ` )
2
2
3
3
π§ This rule is automatically fixable by the
4
4
[ ` --fix ` CLI option] ( https://eslint.org/docs/latest/user-guide/command-line-interface#--fix ) .
Original file line number Diff line number Diff line change @@ -27,6 +27,6 @@ export const config = [
27
27
28
28
export default createPaddingRule (
29
29
__filename ,
30
- 'Enforce padding around afterAll blocks' ,
30
+ 'Enforce padding around `test` and `it` blocks' ,
31
31
config ,
32
32
) ;
You canβt perform that action at this time.
0 commit comments