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 96f31d7 + 852a474 commit 649d3e6Copy full SHA for 649d3e6
commands/utils/validate.js
@@ -171,6 +171,13 @@ module.exports = validate_config = function (lt_config) {
171
}
172
173
174
+ if ("smart_ui" in lt_config.run_settings) {
175
+ if (!("project" in lt_config.run_settings.smart_ui)) {
176
+ reject("Smart UI project name is missing");
177
+ } else if (lt_config.run_settings.smart_ui.project == "") {
178
+ reject("Smart UI porject name can not be blank");
179
+ }
180
181
resolve("Validated the Config");
182
});
183
};
0 commit comments