-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.detoxrc.json
50 lines (50 loc) · 1.61 KB
/
.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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"testRunner": {
"$0": "jest",
"args": {
"config": "e2e/config.json"
}
},
"apps": {
"android": {
"type": "android.apk",
"binaryPath": "SPECIFY_PATH_TO_YOUR_APP_BINARY"
}
},
"devices": {
"simulator": {
"type": "ios.simulator",
"device": {
"type": "iPhone 13"
}
},
"emulator": {
"type": "android.emulator",
"device": {
"avdName": "Pixel_3a_API_30_x86"
}
}
},
"configurations": {
"ios.debug": {
"device": "simulator",
"app": {
"type": "ios.app",
"binaryPath": "build/detox/ios/Build/Products/Debug-iphonesimulator/AtB.app",
"build": "export FORCE_BUNDLING=true && export CODE_SIGNING_REQUIRED=NO && export RCT_NO_LAUNCH_PACKAGER=true && xcodebuild ONLY_ACTIVE_ARCH=YES -workspace ios/atb.xcworkspace -UseNewBuildSystem=YES -configuration Debug -scheme atb -sdk iphonesimulator -derivedDataPath build/detox/ios -destination 'platform=iOS Simulator,OS=15.0,name=iPhone 13'"
}
},
"ios.release": {
"device": "simulator",
"app": {
"type": "ios.app",
"binaryPath": "build/detox/ios/Build/Products/Release-iphonesimulator/AtB.app",
"build": "export CODE_SIGNING_REQUIRED=NO && export RCT_NO_LAUNCH_PACKAGER=true && xcodebuild ONLY_ACTIVE_ARCH=YES -workspace ios/atb.xcworkspace -UseNewBuildSystem=YES -configuration Release -scheme atb -sdk iphonesimulator -derivedDataPath build/detox/ios -destination 'platform=iOS Simulator,OS=15.0,name=iPhone 13'"
}
},
"android": {
"device": "emulator",
"app": "android"
}
}
}