Skip to content

Commit

Permalink
Fix for multiple URL arguments (#1302)
Browse files Browse the repository at this point in the history
  • Loading branch information
kennym authored and LeoNatan committed Apr 17, 2019
1 parent 04f75c0 commit 32be293
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion detox/src/devices/ios/AppleSimUtils.js
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ class AppleSimUtils {
}

_joinLaunchArgs(launchArgs) {
return _.map(launchArgs, (v, k) => `${k} ${v}`).join(' ').trim();
return _.map(launchArgs, (v, k) => `${k} "${v}"`).join(' ').trim();
}

async _launchMagically(frameworkPath, logsInfo, udid, bundleId, args, languageAndLocale) {
Expand Down

0 comments on commit 32be293

Please sign in to comment.