mirror of
https://github.com/callstack/react-native-testing-library.git
synced 2026-09-18 23:09:04 +08:00
95b4889fe9
* Proof of concept - CodeSandbox embed * Prettier fix * Moved examples below API Reference * Created the examples directory Includes react-navigation example * Article on React Navigation * Specify rootDir for testing Prevents CI to run example tests * remove jest-transform-stub and identity-obj-proxy, add transformIgnorePatterns * update docs * rearrange * remove non-essential files * rename Navigation -> AppNavigator * reword comment * add links and explanations * remove index file, because it's not an app anyway Co-authored-by: Michał Pierzchała <thymikee@gmail.com>
31 lines
895 B
JSON
31 lines
895 B
JSON
{
|
|
"name": "react-navigation-example",
|
|
"description": "Testing react-navigation with react-native-testing-library",
|
|
"version": "0.0.1",
|
|
"private": true,
|
|
"scripts": {
|
|
"test": "jest"
|
|
},
|
|
"dependencies": {
|
|
"@react-native-community/masked-view": "^0.1.9",
|
|
"@react-navigation/native": "^5.1.6",
|
|
"@react-navigation/stack": "^5.2.13",
|
|
"prop-types": "^15.7.2",
|
|
"react": "^16.13.1",
|
|
"react-native": "^0.62.2",
|
|
"react-native-gesture-handler": "^1.6.1",
|
|
"react-native-reanimated": "^1.8.0",
|
|
"react-native-safe-area-context": "^0.7.3",
|
|
"react-native-screens": "^2.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.9.0",
|
|
"@babel/runtime": "^7.9.2",
|
|
"babel-jest": "^25.4.0",
|
|
"jest": "^25.4.0",
|
|
"metro-react-native-babel-preset": "^0.59.0",
|
|
"react-native-testing-library": "^1.13.0",
|
|
"react-test-renderer": "^16.13.1"
|
|
}
|
|
}
|