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 2081082 commit efcb0daCopy full SHA for efcb0da
bin/helpers/capabilityHelper.js
@@ -242,10 +242,10 @@ const validate = (bsConfig, args) => {
242
}
243
244
if(!Utils.isUndefined(bsConfig.run_settings["record"]) && String(bsConfig.run_settings["record"]) == 'true') {
245
- if(Utils.isUndefined(bsConfig.run_settings.projectId)) {
+ if(Utils.isUndefined(bsConfig.run_settings.projectId) || bsConfig.run_settings.projectId == "" ) {
246
logger.warn(Constants.validationMessages.PROJECT_ID_MISSING);
247
248
- if (Utils.isUndefined(bsConfig.run_settings["record-key"])) {
+ if (Utils.isUndefined(bsConfig.run_settings["record-key"]) || bsConfig.run_settings["record-key"] == "" ) {
249
logger.warn(Constants.validationMessages.RECORD_KEY_MISSING);
250
251
0 commit comments