Github user alsorokin commented on a diff in the pull request: https://github.com/apache/cordova-paramedic/pull/17#discussion_r81720400 --- Diff: lib/PluginsManager.js --- @@ -41,16 +43,31 @@ PluginsManager.prototype.installTestsForExistingPlugins = function () { installedPlugins.forEach(function(plugin) { // there is test plugin available if (fs.existsSync(path.join(plugin.dir, 'tests', 'plugin.xml'))) { - me.installSinglePlugin(path.join(plugin.dir, 'tests')); + var additionalArgs = ''; + if (plugin.id.indexOf('cordova-plugin-file-transfer') >= 0) { + var fileServerUrl = Server.prototype.getConnectionAddress.bind({ + externalServerUrl: me.config.getExternalServerUrl() + }, me.config.getPlatformId())() + ':5000'; + additionalArgs += ' --variable FILETRANSFER_SERVER_ADDRESS=' + fileServerUrl; + } + me.installSinglePlugin(path.join(plugin.dir, 'tests') + additionalArgs); } }); // this will list installed plugins and their versions this.showPluginsVersions(); }; PluginsManager.prototype.installSinglePlugin = function (plugin) { - if (fs.existsSync(path.resolve(this.storedCWD, plugin))) { - plugin = path.resolve(this.storedCWD, plugin); + var pluginPath = plugin; + var args = ''; + // separate plugin name from args + var argsIndex = plugin.indexOf(' --'); --- End diff -- So basically this logic is still needed but can be moved out of this function to `paramedic.js` Which option is preferable?
--- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastruct...@apache.org or file a JIRA ticket with INFRA. --- --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@cordova.apache.org For additional commands, e-mail: dev-h...@cordova.apache.org