forked from Expensify/App
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdetox.config.js
20 lines (20 loc) · 910 Bytes
/
detox.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
module.exports = {
testRunner: 'jest',
runnerConfig: 'tests/e2e/config.json',
configurations: {
'ios.sim.debug': {
binaryPath: 'ios/build/Build/Products/Debug-iphonesimulator/expensify.cash.app',
build: 'xcodebuild -workspace ios/ExpensifyCash.xcworkspace -scheme ExpensifyCash -configuration '
+ 'Debug -sdk iphonesimulator -derivedDataPath ios/build | xcpretty',
type: 'ios.simulator',
name: 'iPhone 11'
},
'ios.sim.release': {
binaryPath: 'ios/build/Build/Products/Release-iphonesimulator/expensify.cash.app',
build: 'xcodebuild -workspace ios/ExpensifyCash.xcworkspace -scheme ExpensifyCash -configuration '
+ 'Release -sdk iphonesimulator -derivedDataPath ios/build | xcpretty',
type: 'ios.simulator',
name: 'iPhone 11'
},
},
};