57 lines
1.3 KiB
JavaScript
57 lines
1.3 KiB
JavaScript
/** @type {Detox.DetoxConfig} */
|
|
module.exports = {
|
|
testRunner: {
|
|
args: {
|
|
'$0': 'jest',
|
|
config: 'e2e/jest.config.js'
|
|
},
|
|
jest: {
|
|
setupTimeout: 120000
|
|
}
|
|
},
|
|
apps: {
|
|
'android.debug': {
|
|
type: 'android.apk',
|
|
binaryPath: 'android/app/build/outputs/apk/debug/app-debug.apk',
|
|
build: 'cd android && ENVFILE=../.env.staging ./gradlew assembleDebug assembleAndroidTest -DtestBuildType=debug',
|
|
reversePorts: [
|
|
8081
|
|
]
|
|
},
|
|
'android.release': {
|
|
type: 'android.apk',
|
|
binaryPath: 'android/app/build/outputs/apk/release/app-release.apk',
|
|
build: 'cd android && ENVFILE=../.env.staging ./gradlew assembleRelease assembleAndroidTest -DtestBuildType=release'
|
|
},
|
|
},
|
|
devices: {
|
|
simulator: {
|
|
type: 'ios.simulator',
|
|
device: {
|
|
type: 'iPhone 15',
|
|
},
|
|
},
|
|
attached: {
|
|
type: 'android.attached',
|
|
device: {
|
|
adbName: '.*', // any attached device
|
|
},
|
|
},
|
|
emulator: {
|
|
type: 'android.emulator',
|
|
device: {
|
|
avdName: process.env.ANDROID_EMULATOR_NAME || 'Pixel_6_API_30'
|
|
}
|
|
}
|
|
},
|
|
configurations: {
|
|
'android.emu.debug': {
|
|
device: 'emulator',
|
|
app: 'android.debug'
|
|
},
|
|
'android.emu.release': {
|
|
device: 'emulator',
|
|
app: 'android.release'
|
|
}
|
|
}
|
|
};
|