We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
wdio.config.js
1 parent b9d036c commit 41aa324Copy full SHA for 41aa324
scripts/test-matrix.sh
@@ -10,7 +10,8 @@ scripts_dir=$(cd -P "$(dirname "$0")" && pwd)
10
11
function build_and_run {
12
if [[ $1 == "ios" ]]; then
13
- ${PACKAGE_MANAGER} $1 --simulator 'iPhone 14' --no-packager
+ local simulator=$(TEST_ARGS=ios node -e 'console.log(require("./test/specs/wdio.config")["capabilities"]["appium:deviceName"]);')
14
+ ${PACKAGE_MANAGER} $1 --simulator "${simulator}" --no-packager
15
else
16
${PACKAGE_MANAGER} $1 --no-packager
17
fi
0 commit comments