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 4012ae5 commit 8018633Copy full SHA for 8018633
commands/utils/validate.js
@@ -154,6 +154,13 @@ module.exports = validate_config = function (lt_config) {
154
}
155
156
157
+ if ("smart_ui" in lt_config.run_settings) {
158
+ if (!("project" in lt_config.run_settings.smart_ui)) {
159
+ reject("Smart UI project name is missing");
160
+ } else if (lt_config.run_settings.smart_ui.project == "") {
161
+ reject("Smart UI porject name can not be blank");
162
+ }
163
164
resolve("Validated the Config");
165
});
166
};
0 commit comments