Skip to content

Commit

Permalink
increase ios job timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
yasserfaraazkhan committed Feb 12, 2025
1 parent 76ec9e2 commit c69adc5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions detox/.detoxrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@
"ios.simulator": {
"type": "ios.simulator",
"device": {
"type": "__DEVICE_NAME__",
"os": "__DEVICE_OS_VERSION__"
"type": "iPhone 16 Pro",
"os": "iOS 18.1"
}
},
"android.emulator": {
Expand Down
4 changes: 2 additions & 2 deletions detox/utils/generate_detox_config_ci.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
/* eslint-disable no-process-env */
/* eslint-disable no-console */
const fs = require('fs');
const deviceName = process.env.DEVICE_NAME || 'iPhone 14';
const deviceOSVersion = process.env.DEVICE_OS_VERSION || 'iOS 17.2';
const deviceName = process.env.DEVICE_NAME || 'iPhone 16 Pro';
const deviceOSVersion = process.env.DEVICE_OS_VERSION || 'iOS 18.1';
const detoxConfigTemplate = fs.readFileSync('../.detoxrc.json', 'utf8');
const detoxConfig = detoxConfigTemplate.replace('__DEVICE_NAME__', deviceName).replace('__DEVICE_OS_VERSION__', deviceOSVersion);

Expand Down

0 comments on commit c69adc5

Please sign in to comment.