File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -86,7 +86,7 @@ exports[`rules should export configs that refer to actual rules 1`] = `
86
86
" jest" : ObjectContaining {
87
87
" meta" : {
88
88
" name" : " eslint-plugin-jest" ,
89
- " version" : " 27.8.0 " ,
89
+ " version" : Any < String > ,
90
90
},
91
91
},
92
92
},
@@ -167,7 +167,7 @@ exports[`rules should export configs that refer to actual rules 1`] = `
167
167
" jest" : ObjectContaining {
168
168
" meta" : {
169
169
" name" : " eslint-plugin-jest" ,
170
- " version" : " 27.8.0 " ,
170
+ " version" : Any < String > ,
171
171
},
172
172
},
173
173
},
@@ -201,7 +201,7 @@ exports[`rules should export configs that refer to actual rules 1`] = `
201
201
" jest" : ObjectContaining {
202
202
" meta" : {
203
203
" name" : " eslint-plugin-jest" ,
204
- " version" : " 27.8.0 " ,
204
+ " version" : Any < String > ,
205
205
},
206
206
},
207
207
},
@@ -229,7 +229,7 @@ exports[`rules should export configs that refer to actual rules 1`] = `
229
229
" jest" : ObjectContaining {
230
230
" meta" : {
231
231
" name" : " eslint-plugin-jest" ,
232
- " version" : " 27.8.0 " ,
232
+ " version" : Any < String > ,
233
233
},
234
234
},
235
235
},
Original file line number Diff line number Diff line change @@ -51,7 +51,7 @@ describe('rules', () => {
51
51
const expectJestPlugin = expect . objectContaining ( {
52
52
meta : {
53
53
name : 'eslint-plugin-jest' ,
54
- version : '27.8.0' ,
54
+ version : expect . any ( String ) ,
55
55
} ,
56
56
} ) ;
57
57
You can’t perform that action at this time.
0 commit comments