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.
1 parent 0263f33 commit da2c8c1Copy full SHA for da2c8c1
bin/helpers/capabilityHelper.js
@@ -286,6 +286,9 @@ const validate = (bsConfig, args) => {
286
if (!Utils.isUndefined(bsConfig.run_settings.nodeVersion) && typeof(bsConfig.run_settings.nodeVersion) === 'string' && !bsConfig.run_settings.nodeVersion.match(/^(\d+\.)?(\d+\.)?(\*|\d+)$/))
287
logger.warn(Constants.validationMessages.NODE_VERSION_PARSING_ERROR);
288
289
+ if(!Utils.isUndefined(cypressConfigFile.port)) {
290
+ logger.warn(`The requested port number ${cypressConfigFile.port} is ignored. The default BrowserStack port will be used for this execution`);
291
+ }
292
resolve(cypressConfigFile);
293
});
294
}
0 commit comments