From 8f337538ae86b43f524044db3a7363c12e93d7d9 Mon Sep 17 00:00:00 2001 From: Lorenzo Sciandra Date: Tue, 18 Oct 2022 04:43:38 -0700 Subject: [PATCH] feat(jest): bump jest to 29 in the template (#34972) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Summary: This PR is the follow up of https://github.com/facebook/react-native/pull/34724 for the template; this way, we'll have version alignment and RN71 will use this. This wants to be merged along https://github.com/facebook/react-native/pull/34971 ## Changelog [General] [Changed] - upgrade Jest in template to 29 Pull Request resolved: https://github.com/facebook/react-native/pull/34972 Test Plan: Generated a test project via `yarn test-e2e-local -t RNTestProject` and then run `yarn test` in that project to verify that there's no regression. ✅ Reviewed By: huntie Differential Revision: D40379963 Pulled By: robhogan fbshipit-source-id: 618207ed6bf7921d13f0b6a9220dc52c9cf78b14 --- template/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/template/package.json b/template/package.json index b44f30b9f9ab0a..7439dacf9e97ff 100644 --- a/template/package.json +++ b/template/package.json @@ -17,9 +17,9 @@ "@babel/core": "^7.12.9", "@babel/runtime": "^7.12.5", "@react-native-community/eslint-config": "^3.0.0", - "babel-jest": "^26.6.3", + "babel-jest": "^29.0.3", "eslint": "^8.19.0", - "jest": "^26.6.3", + "jest": "^29.0.3", "metro-react-native-babel-preset": "0.72.3", "react-test-renderer": "18.2.0" },