Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

(ios): add ios13 local config #199

Merged
merged 11 commits into from
Sep 3, 2020
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ node_js: 12

_ios: &_ios
os: osx
osx_image: xcode11.5
osx_image: xcode11.6

_android: &_android
language: android
Expand All @@ -61,6 +61,8 @@ matrix:
<<: *_ios
- env: PLATFORM=local/ios-10.0
<<: *_ios
- env: PLATFORM=local/ios-13.6
<<: *_ios

# many tests with saucelabs
- env: PLATFORM=browser-chrome
Expand Down
7 changes: 7 additions & 0 deletions conf/pr/local/ios-13.6.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"platform": "ios@latest",
"action": "run",
"cleanUpAfterRun": true,
"target": "iPhone-11, 13.6",
"verbose": true
}
3 changes: 3 additions & 0 deletions lib/utils/utilities.js
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,9 @@ function getSimulatorModelId (cli, target) {
return;
}

logger.info(`Avaliable Emulators:\n${result.stdout}`);
logger.info(`Filtering for Targeted Emulator: ${target}`);

// Return the individual target that is filtered from the known simulators/emulators based on provided target name. (default: ^iPhone)
return result.stdout
.split('\n')
Expand Down