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.
2 parents 73c951b + 8018633 commit 852a474Copy full SHA for 852a474
commands/utils/validate.js
@@ -158,6 +158,13 @@ module.exports = validate_config = function (lt_config) {
158
}
159
160
161
+ if ("smart_ui" in lt_config.run_settings) {
162
+ if (!("project" in lt_config.run_settings.smart_ui)) {
163
+ reject("Smart UI project name is missing");
164
+ } else if (lt_config.run_settings.smart_ui.project == "") {
165
+ reject("Smart UI porject name can not be blank");
166
+ }
167
168
resolve("Validated the Config");
169
});
170
};
0 commit comments