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 fd72daa commit c460953Copy full SHA for c460953
bin/helpers/utils.js
@@ -1327,7 +1327,7 @@ exports.setEnforceSettingsConfig = (bsConfig) => {
1327
if(specConfigs && specConfigs.includes(',')) {
1328
specConfigs = JSON.stringify(specConfigs.split(','));
1329
}
1330
- let spec_pattern_args = 'specPattern="'+specConfigs+'"';
+ let spec_pattern_args = `specPattern=${specConfigs}`;
1331
config_args = this.isUndefined(config_args) ? spec_pattern_args : config_args + ',' + spec_pattern_args;
1332
1333
if ( this.isNotUndefined(config_args) ) bsConfig["run_settings"]["config"] = config_args;
0 commit comments