Skip to content

Commit 473eb1d

Browse files
Adnan-Bacicfacebook-github-bot
authored andcommitted
Move jest config from package.json to dedicated jest.config.js file (#35856)
Summary: According to: https://jestjs.io/docs/configuration > It is recommended to define the configuration in a dedicated JavaScript, TypeScript or JSON file. The file will be discovered automatically, if it is named jest.config.js|ts|mjs|cjs|json. react-native projects have the jest config in package.json, this change aims to follow jest recommendations and have a dedicated file for jest configs. Originally suggested here: react-native-community/discussions-and-proposals#583 ## Changelog <!-- Help reviewers and the release process by writing your own changelog entry. Pick one each for the category and type tags: [ANDROID|GENERAL|IOS|INTERNAL] [BREAKING|ADDED|CHANGED|DEPRECATED|REMOVED|FIXED|SECURITY] - Message For more details, see: https://reactnative.dev/contributing/changelogs-in-pull-requests --> [GENERAL] [CHANGED] - Moved jest config from package.json to dedicated jest.config.js file Pull Request resolved: #35856 Test Plan: 1. cd template 2. yarn 3. yarn test The test should (still) pass Reviewed By: christophpurrer Differential Revision: D42544351 Pulled By: robhogan fbshipit-source-id: e27d1dad2b52d757777c40a77d0639f381557c88
1 parent f4072b1 commit 473eb1d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

template/jest.config.js

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
preset: 'react-native',
3+
};

template/package.json

-3
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,5 @@
2929
"prettier": "^2.4.1",
3030
"react-test-renderer": "18.2.0",
3131
"typescript": "4.8.4"
32-
},
33-
"jest": {
34-
"preset": "react-native"
3532
}
3633
}

0 commit comments

Comments
 (0)