File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff 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 },
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { existsSync } from 'fs';
22import { resolve } from 'path' ;
33import plugin from '../' ;
44
5- const numberOfRules = 63 ;
5+ const numberOfRules = 64 ;
66const ruleNames = Object . keys ( plugin . rules ) ;
77const deprecatedRules = Object . entries ( plugin . rules )
88 . filter ( ( [ , rule ] ) => rule . meta . deprecated )
You can’t perform that action at this time.
0 commit comments