Commits (2)
-
Brian Hatchet authoreddbf49e82
-
Martin Santangelo authored
Epic/e2e detox See merge request !465
e1551452
Showing
This diff is collapsed.
e2e/actions/capturePoster.js
0 → 100644
e2e/channel.spec.js
0 → 100644
e2e/comment.spec.js
0 → 100644
e2e/helpers/createUser.js
0 → 100644
e2e/helpers/deleteUser.js
0 → 100644
e2e/helpers/waitFor.js
0 → 100644
e2e/messenger.spec.js
0 → 100644
e2e/post.spec.js
0 → 100644
e2e/register.spec.js
0 → 100644
... | ... | @@ -23,6 +23,7 @@ |
"@react-native-community/netinfo": "^4.4.0", | ||
"@sentry/react-native": "^1.0.9", | ||
"crypto-js": "^3.1.9-1", | ||
"detox": "^14.8.1", | ||
"entities": "^2.0.0", | ||
"ethjs-signer": "^0.1.1", | ||
"i18n-js": "^3.2.2", | ||
... | ... | @@ -42,7 +43,7 @@ |
"react-native-convert-ph-asset": "^1.0.3", | ||
"react-native-device-info": "^4.0.1", | ||
"react-native-device-log": "Minds/react-native-device-log#74f06b09c6656aa228a9a3a474c714d82abf509e", | ||
"react-native-elements": "^0.19.1", | ||
"react-native-elements": "^1.2.7", | ||
"react-native-exception-handler": "^2.10.8", | ||
"react-native-exit-app": "wumke/react-native-exit-app", | ||
"react-native-fast-image": "^7.0.2", | ||
... | ... | @@ -109,7 +110,7 @@ |
"configurations": { | ||
"ios.sim.debug": { | ||
"binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/Minds.app", | ||
"build": "xcodebuild -workspace ios/Minds.xcworkspace -scheme Minds -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build", | ||
"build": "RN_SRC_EXT=e2e.js xcodebuild -workspace ios/Minds.xcworkspace -scheme Minds -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build", | ||
"type": "ios.simulator", | ||
"device": { | ||
"type": "iPhone 11" | ||
... | ... | @@ -117,11 +118,27 @@ |
}, | ||
"ios.sim.release": { | ||
"binaryPath": "ios/build/Build/Products/Release-iphonesimulator/Minds.app", | ||
"build": "xcodebuild -workspace ios/Minds.xcworkspace -scheme Minds -configuration Release -sdk iphonesimulator -derivedDataPath ios/build", | ||
"build": "RN_SRC_EXT=e2e.js xcodebuild -workspace ios/Minds.xcworkspace -scheme Minds -configuration Release -sdk iphonesimulator -derivedDataPath ios/build", | ||
"type": "ios.simulator", | ||
"device": { | ||
"type": "iPhone 11" | ||
} | ||
}, | ||
"android.emu.debug": { | ||
"binaryPath": "android/app/build/outputs/apk/debug/app-debug.apk", | ||
"build": "cd android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug && cd ..", | ||
"type": "android.attached", | ||
"device": { | ||
"name": "ZY2234PLHJ" | ||
} | ||
}, | ||
"android.emu.release": { | ||
"binaryPath": "android/app/build/outputs/apk/release/app-release.apk", | ||
"build": "cd android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release && cd ..", | ||
"type": "android.attached", | ||
"device": { | ||
"name": "ZY2234PLHJ" | ||
} | ||
} | ||
}, | ||
"test-runner": "jest" | ||
... | ... |
src/config/Config.e2e.js
0 → 100644
This diff is collapsed.