-
Notifications
You must be signed in to change notification settings - Fork 0
/
.detoxrc.json
29 lines (29 loc) · 859 Bytes
/
.detoxrc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"testRunner": "jest",
"runnerConfig": "e2e/config.json",
"apps": {
"ios.debug": {
"type": "ios.app",
"binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/poc_e2e.app",
"build": "xcodebuild -workspace ios/poc_e2e.xcworkspace -scheme poc_e2e -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build"
}
},
"devices": {
"simulator": {
"type": "ios.simulator",
"device": "iPhone 13"
}
},
"configurations": {
"android.emu.debug": {
"type": "android.attached",
"name": "192.168.58.102:5555",
"binaryPath": "android/app/build/outputs/apk/debug/app-debug.apk",
"build": "cd android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug && cd .."
},
"ios.sim.debug": {
"app": "ios.debug",
"device": "simulator"
}
}
}