Commits (20)
-
Martin Santangelo authored83a9aa31
-
Juan Manuel Solaro authored2958d3c0
-
Brian Hatchet authored
More reliable login e2e See merge request !427
22369c59 -
Juan Manuel Solaro authored958ae52c
-
Martin Santangelo authoreddf26699f
-
Brian Hatchet authored
Android support for detox See merge request !430
0a085d06 -
Juan Manuel Solaro authoredd4e87c2a
-
Brian Hatchet authored
New e2e tests for mobile See merge request !426
14f8f369 -
Martin Santangelo authoredad796a88
-
Brian Hatchet authored
e2e register flow, update react-native-elements, and add mock support to e2e See merge request !431
67c2f668 -
Juan Manuel Solaro authored12f7c24f
-
Mark Harding authored
My channel e2e tests See merge request !439
377ab0f2 -
Mark Harding authored
Release/3.12.1 See merge request !452
ef778553 -
Brian Hatchet authoredacb1a418
-
Brian Hatchet authored
Use app language as default for translations, improve error handling and clean translation data on logout
4a994296 -
Brian Hatchet authored
Release/3.14.0 See merge request !464
0aa3a563 -
Martin Santangelo authored36d7a263
-
Juan Manuel Solaro authored3f5bdc7d
-
Juan Manuel Solaro authored09a156de
-
Juan Manuel Solaro authored98d6badc
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.