{
|
|
"testRunner": "jest",
|
|
"runnerConfig": "e2e/config.json",
|
|
"skipLegacyWorkersInjection": true,
|
|
"apps": {
|
|
"ios": {
|
|
"type": "ios.app",
|
|
"binaryPath": "SPECIFY_PATH_TO_YOUR_APP_BINARY",
|
|
"build": "cd android && ./gradlew assembleBetaRelease assembleBetaReleaseAndroidTest -DtestBuildType=release && cd .."
|
|
},
|
|
"android": {
|
|
"type": "android.apk",
|
|
"binaryPath": "android/app/build/outputs/apk/release/app-release.apk",
|
|
"build": "cd android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release && cd .."
|
|
},
|
|
"android.debug": {
|
|
"type": "android.apk",
|
|
"binaryPath": "android/app/build/outputs/apk/debug/app-debug.apk",
|
|
"build": "cd android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug && cd .."
|
|
}
|
|
},
|
|
"devices": {
|
|
"simulator": {
|
|
"type": "ios.simulator",
|
|
"device": {
|
|
"type": "iPhone 11"
|
|
}
|
|
},
|
|
"emulator": {
|
|
"type": "android.emulator",
|
|
"device": {
|
|
"avdName": "Pixel_4_API_29"
|
|
}
|
|
}
|
|
},
|
|
"configurations": {
|
|
"ios": {
|
|
"device": "simulator",
|
|
"app": "ios"
|
|
},
|
|
"android.ci": {
|
|
"device": "emulator",
|
|
"app": "android"
|
|
},
|
|
"android.debug": {
|
|
"device": "emulator",
|
|
"app": "android.debug"
|
|
}
|
|
}
|
|
}
|