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 1a6bc2c commit dfd0329Copy full SHA for dfd0329
bin/helpers/utils.js
@@ -164,7 +164,7 @@ exports.setCypressConfigFilename = (bsConfig, args) => {
164
165
bsConfig.run_settings.userProvidedCypessConfigFile = (userProvidedCypessConfigFile || (!this.isUndefined(bsConfig.run_settings.cypress_config_file)));
166
167
- if (userProvidedCypessConfigFile || this.isUndefined(bsConfig.run_settings.cypress_config_file)) {
+ if ((userProvidedCypessConfigFile || this.isUndefined(bsConfig.run_settings.cypress_config_file)) && !this.isUndefined(args.cypressConfigFile)) {
168
bsConfig.run_settings.cypress_config_file = args.cypressConfigFile;
169
bsConfig.run_settings.cypress_config_filename = path.basename(args.cypressConfigFile);
170
} else if (!this.isUndefined(bsConfig.run_settings.cypress_config_file)) {
0 commit comments