forked from wix/react-native-calendars
-
Notifications
You must be signed in to change notification settings - Fork 0
/
detox.config.js
28 lines (28 loc) ยท 956 Bytes
/
detox.config.js
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
module.exports = {
configurations: {
"ios.sim.debug": {
binaryPath: "ios/build/Build/Products/Debug-iphonesimulator/CalendarsExample.app",
build: "xcodebuild -workspace ios/CalendarsExample.xcworkspace -scheme CalendarsExample -configuration Debug -sdk iphonesimulator -derivedDataPath ios/build",
type: "ios.simulator",
device: {
type: "iPhone 11",
os: "iOS 13.7"
}
},
"ios.sim.release": {
binaryPath: "ios/build/Build/Products/Release-iphonesimulator/CalendarsExample.app",
build: "xcodebuild -workspace ios/CalendarsExample.xcworkspace -scheme CalendarsExample -configuration Release -sdk iphonesimulator -derivedDataPath ios/build",
type: "ios.simulator",
device: {
type: "iPhone 11",
os: "iOS 13.7"
}
}
},
artifacts: {
plugins: {
uiHierarchy: process.env.JENKINS_CI ? "enabled" : undefined,
}
},
testRunner: "mocha"
};