forked from apiko-dev/amazon-ivs-react-native-broadcast
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.detoxrc.json
45 lines (45 loc) · 1.18 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
{
"testRunner": "jest",
"runnerConfig": "e2e/config.json",
"skipLegacyWorkersInjection": true,
"apps": {
"android.debug": {
"type": "android.apk",
"binaryPath": "example/android/app/build/outputs/apk/debug/app-debug.apk",
"build": "cd example/android && ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug"
},
"android.release": {
"type": "android.apk",
"binaryPath": "example/android/app/build/outputs/apk/release/app-release.apk",
"build": "cd example/android && ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release"
}
},
"devices": {
"android.device": {
"type": "android.attached",
"device": {
"adbName": ""
}
},
"android.emulator": {
"type": "android.emulator",
"device": {
"avdName": "Nexus_6_API_29"
}
}
},
"configurations": {
"android.device.debug": {
"device": "android.device",
"app": "android.debug"
},
"android.device.release": {
"device": "android.device",
"app": "android.release"
},
"android.emu.debug": {
"device": "android.emulator",
"app": "android.debug"
}
}
}