Skip to content

Commit 17b5bc1

Browse files
committed
added detailed command logs flag
1 parent 41a5d73 commit 17b5bc1

File tree

3 files changed

+10
-3
lines changed

3 files changed

+10
-3
lines changed

commands/utils/validate.js

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -285,6 +285,13 @@ module.exports = validate_config = function (lt_config, validation_configs) {
285285
reject("Type of stop_on_failure flag is not bool");
286286
}
287287

288+
if (
289+
lt_config.run_settings.detailed_command_logs &&
290+
typeof lt_config.run_settings.detailed_command_logs != "boolean"
291+
) {
292+
reject("Type of detailed_command_logs flag should be bool");
293+
}
294+
288295
//Check for project capability
289296
if (
290297
lt_config.run_settings.project_name &&

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "lambdatest-cypress-cli",
3-
"version": "3.0.16",
3+
"version": "3.0.17",
44
"description": "The lambdatest-cypress-cli is LambdaTest's command-line interface (CLI) aimed to help you run your Cypress tests on LambdaTest platform.",
55
"homepage": "https://github.com/LambdaTest/lambdatest-cypress-cli",
66
"author": "LambdaTest <[email protected]>",

0 commit comments

Comments
 (0)