Skip to content

Commit

Permalink
change IOS testing setup to download devapp when starting tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jiji14 committed Nov 17, 2023
1 parent 25bfdd5 commit 161bbbd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions e2e-tests/config/ios.config.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
const { getDeviceName, getPlatformVersion } = require('./common');
const { config } = require('./wdio.conf');
const { join } = require('path');

// Appium capabilities
config.capabilities = [
Expand All @@ -13,8 +14,8 @@ config.capabilities = [
'appium:deviceName': getDeviceName('iOS'),
'appium:platformVersion': getPlatformVersion('iOS'),
'appium:automationName': 'XCUITest',
'appium:app': 'edu.berkeley.eecs.emission.devapp',
// it may change once we finalize our target app
'appium:app': join(process.cwd(), './apps/em-devapp.app'),
},
];

exports.config = config;

0 comments on commit 161bbbd

Please sign in to comment.