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 649d3e6 commit a99d362Copy full SHA for a99d362
commands/utils/validate.js
@@ -107,14 +107,15 @@ module.exports = validate_config = function (lt_config) {
107
}
108
109
if (
110
- lt_config.run_settings.cypress_version &&
+ lt_config.run_settings.hasOwnProperty("cypress_version") &&
111
lt_config.run_settings.cypress_version != ""
112
) {
113
cypress_flag = true;
114
} else if (
115
116
lt_config.run_settings.cypress_version == ""
117
118
+ cypress_flag = false;
119
reject(
120
"Error!! cypress_version can not be blank, either provide a value or remove the key"
121
);
0 commit comments