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 4e36fdb commit a85992dCopy full SHA for a85992d
bin/helpers/utils.js
@@ -1326,7 +1326,7 @@ exports.setEnforceSettingsConfig = (bsConfig) => {
1326
let specConfigs = bsConfig.run_settings.specs;
1327
// if multiple specs are passed, convert it into an array.
1328
if(specConfigs && specConfigs.includes(',')) {
1329
- specConfigs = JSON.stringify(bsConfig.run_settings.specs.split(','));
+ specConfigs = JSON.stringify(specConfigs.split(','));
1330
}
1331
let spec_pattern_args = 'specPattern="'+specConfigs+'"';
1332
config_args = this.isUndefined(config_args) ? spec_pattern_args : config_args + ',' + spec_pattern_args;
0 commit comments