react-native-navigation 7.33.4-snapshot.1049 → 7.33.4-snapshot.1069
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.e2e.js +4 -0
- package/package.json +11 -6
package/index.e2e.js
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-navigation",
|
|
3
|
-
"version": "7.33.4-snapshot.
|
|
3
|
+
"version": "7.33.4-snapshot.1069",
|
|
4
4
|
"description": "React Native Navigation - truly native navigation for iOS and Android",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"nativePackage": true,
|
|
@@ -88,10 +88,10 @@
|
|
|
88
88
|
"@types/react-test-renderer": "16.9.2",
|
|
89
89
|
"@typescript-eslint/eslint-plugin": "4.33.0",
|
|
90
90
|
"@typescript-eslint/parser": "4.33.0",
|
|
91
|
-
"babel-jest": "^
|
|
91
|
+
"babel-jest": "^27.0.0",
|
|
92
92
|
"clang-format": "^1.4.0",
|
|
93
93
|
"detox": "20.9.0",
|
|
94
|
-
"detox-testing-library-rnn-adapter": "2.
|
|
94
|
+
"detox-testing-library-rnn-adapter": "^2.0.3",
|
|
95
95
|
"eslint": "7.32.0",
|
|
96
96
|
"eslint-config-prettier": "6.11.0",
|
|
97
97
|
"eslint-plugin-prettier": "3.1.4",
|
|
@@ -130,8 +130,11 @@
|
|
|
130
130
|
"*.{h,m,mm}": "node ./scripts/check-clang-format"
|
|
131
131
|
},
|
|
132
132
|
"detox": {
|
|
133
|
-
"
|
|
134
|
-
|
|
133
|
+
"testRunner": {
|
|
134
|
+
"args": {
|
|
135
|
+
"config": "e2e/jest.config.js"
|
|
136
|
+
}
|
|
137
|
+
},
|
|
135
138
|
"artifacts": {
|
|
136
139
|
"plugins": {
|
|
137
140
|
"log": "all",
|
|
@@ -168,7 +171,8 @@
|
|
|
168
171
|
"ios.debug": {
|
|
169
172
|
"type": "ios.app",
|
|
170
173
|
"binaryPath": "playground/ios/DerivedData/playground/Build/Products/Debug-iphonesimulator/playground.app",
|
|
171
|
-
"
|
|
174
|
+
"start": "npm start -- --e2e",
|
|
175
|
+
"build": "RCT_NO_LAUNCH_PACKAGER=true xcodebuild build -scheme playground -workspace playground/ios/playground.xcworkspace -sdk iphonesimulator -configuration Debug -derivedDataPath playground/ios/DerivedData/playground ONLY_ACTIVE_ARCH=YES -quiet -UseModernBuildSystem=YES"
|
|
172
176
|
},
|
|
173
177
|
"ios.release": {
|
|
174
178
|
"type": "ios.app",
|
|
@@ -178,6 +182,7 @@
|
|
|
178
182
|
"android.debug": {
|
|
179
183
|
"type": "android.apk",
|
|
180
184
|
"binaryPath": "playground/android/app/build/outputs/apk/debug/app-debug.apk",
|
|
185
|
+
"start": "npm start -- --e2e",
|
|
181
186
|
"build": "cd playground/android && ./gradlew app:assembleDebug app:assembleAndroidTest -DtestBuildType=debug"
|
|
182
187
|
},
|
|
183
188
|
"android.release": {
|