Skip to content

Commit 9ce0a40

Browse files
committed
chore: update rules.test.ts due to newly added rule
Signed-off-by: hainenber <[email protected]>
1 parent 1d32972 commit 9ce0a40

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

src/__tests__/__snapshots__/rules.test.ts.snap

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ exports[`rules should export configs that refer to actual rules 1`] = `
7272
"jest/valid-describe-callback": "error",
7373
"jest/valid-expect": "error",
7474
"jest/valid-expect-in-promise": "error",
75+
"jest/valid-mocked-module-path": "error",
7576
"jest/valid-title": "error",
7677
},
7778
},
@@ -164,6 +165,7 @@ exports[`rules should export configs that refer to actual rules 1`] = `
164165
"jest/valid-describe-callback": "error",
165166
"jest/valid-expect": "error",
166167
"jest/valid-expect-in-promise": "error",
168+
"jest/valid-mocked-module-path": "error",
167169
"jest/valid-title": "error",
168170
},
169171
},

src/__tests__/rules.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { existsSync } from 'fs';
22
import { resolve } from 'path';
33
import plugin from '../';
44

5-
const numberOfRules = 63;
5+
const numberOfRules = 64;
66
const ruleNames = Object.keys(plugin.rules);
77
const deprecatedRules = Object.entries(plugin.rules)
88
.filter(([, rule]) => rule.meta.deprecated)

0 commit comments

Comments
 (0)