File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 55### Fixes
66
77- ` [expect] ` Fix ` toMatchObject ` to work with inherited class getters ([ #10381 ] ( https://github.com/facebook/jest/pull/10381 ) )
8+ - ` [pretty-format] ` Lower minimum node version to >= 10 ([ #10435 ] ( https://github.com/facebook/jest/pull/10435 ) )
89
910### Chore & Maintenance
1011
Original file line number Diff line number Diff line change 2828 "react-test-renderer" : " *"
2929 },
3030 "engines" : {
31- "node" : " >= 10.14.2 "
31+ "node" : " >= 10"
3232 },
3333 "publishConfig" : {
3434 "access" : " public"
Original file line number Diff line number Diff line change @@ -34,7 +34,11 @@ module.exports.getPackages = function getPackages() {
3434
3535 assert . equal (
3636 pkg . engines . node ,
37- pkg . name === 'jest-worker' ? '>= 10.13.0' : nodeEngineRequiremnt ,
37+ pkg . name === 'jest-worker'
38+ ? '>= 10.13.0'
39+ : pkg . name === 'pretty-format'
40+ ? '>= 10'
41+ : nodeEngineRequiremnt ,
3842 `Engine requirement in ${ pkg . name } should match root` ,
3943 ) ;
4044 } ) ;
You can’t perform that action at this time.
0 commit comments