Files
notesnook/apps/mobile/.detoxrc.json
2022-05-11 12:06:32 +05:00

40 lines
1.6 KiB
JSON

{
"testRunner": "jest",
"runnerConfig": "e2e/config.json",
"configurations": {
"ios": {
"binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/Notesnook.app",
"build": "xcodebuild -workspace ios/Notesnook.xcworkspace -scheme Notesnook -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build",
"type": "ios.simulator",
"device": {
"type": "iPhone 11 Pro"
}
},
"android.emu.debug": {
"binaryPath": "android/app/build/outputs/apk/debug/app-arm64-v8a-debug.apk",
"build": "cd android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug && cd ..",
"type": "android.emulator",
"name": "emu"
},
"android.dev.debug": {
"binaryPath": "android/app/build/outputs/apk/debug/app-arm64-v8a-debug.apk",
"testBinaryPath": "android/app/build/outputs/apk/androidTest/debug/app-debug-androidTest.apk",
"build": "cd android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug && cd ..",
"type": "android.attached",
"device": {
"adbName": "LMG710ULM3d3678f0",
"adbNameAlt": "LMG710ULM3d3678f0"
}
},
"android.dev.release": {
"binaryPath": "android/app/build/outputs/apk/release/app-arm64-v8a-release.apk",
"testBinaryPath": "android/app/build/outputs/apk/androidTest/release/app-release-androidTest.apk",
"build": "cd android ; ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release ; cd ..",
"type": "android.attached",
"device": {
"adbName": "LMG710ULM3d3678f0"
}
}
}
}