-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
.detoxrc.json
79 lines (79 loc) · 2 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"testRunner": "jest",
"runnerConfig": "e2e/config.json",
"skipLegacyWorkersInjection": true,
"apps": {
"app:debug:ios": {
"type": "ios.app",
"binaryPath": "ios/build/Build/Products/Debug-iphonesimulator/LifeTime.Dev.app",
"build": "xcodebuild -workspace ios/LifeTime.xcworkspace -scheme LifeTime -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build -quiet"
},
"app:release:ios": {
"type": "ios.app",
"binaryPath": "ios/build/Build/Products/Release-iphonesimulator/LifeTime.app",
"build": "xcodebuild -workspace ios/LifeTime.xcworkspace -scheme LifeTime -configuration Release -sdk iphonesimulator -derivedDataPath ios/build -quiet"
},
"android": {
"type": "android.apk",
"binaryPath": "SPECIFY_PATH_TO_YOUR_APP_BINARY"
}
},
"devices": {
"iPhone 6.5": {
"type": "ios.simulator",
"device": {
"type": "iPhone 13 Pro Max"
}
},
"iPhone 5.5 legacy": {
"type": "ios.simulator",
"device": {
"type": "iPhone 8 Plus"
}
},
"iPad 12.9": {
"type": "ios.simulator",
"device": {
"type": "iPad Pro (12.9-inch) (5th generation)"
}
},
"iPad 12.9 legacy": {
"type": "ios.simulator",
"device": {
"type": "iPad Pro (12.9-inch) (2nd generation)"
}
},
"emulator": {
"type": "android.emulator",
"device": {
"avdName": "Pixel_3a_API_30_x86"
}
}
},
"configurations": {
"ios": {
"device": "iPhone 5.5",
"app": "app:debug:ios"
},
"ios-6.5": {
"device": "iPhone 6.5",
"app": "app:release:ios"
},
"ios-5.5-legacy": {
"device": "iPhone 5.5 legacy",
"app": "app:release:ios"
},
"ios-12.9": {
"device": "iPad 12.9",
"app": "app:release:ios"
},
"ios-12.9-legacy": {
"device": "iPad 12.9 legacy",
"app": "app:release:ios"
},
"android": {
"device": "emulator",
"app": "android"
}
}
}