From 846589d3a3a7f89c05d7ff08ba1cb3cd7f395fd0 Mon Sep 17 00:00:00 2001 From: Himanshu Ranjan <106653965+HRanjan-11@users.noreply.github.com> Date: Fri, 1 Dec 2023 10:20:50 +0530 Subject: [PATCH] Revert "added full har cap" --- commands/utils/set_args.js | 8 -------- index.js | 5 ----- 2 files changed, 13 deletions(-) diff --git a/commands/utils/set_args.js b/commands/utils/set_args.js index 65fb164..b81a9c2 100644 --- a/commands/utils/set_args.js +++ b/commands/utils/set_args.js @@ -489,14 +489,6 @@ function sync_args_from_cmd(args) { lt_config["run_settings"]["exclude_specs"] == []; } - if ("fullHar" in args) { - if (args["fullHar"] == "true") { - lt_config.run_settings.fullHar = true; - } else { - lt_config.run_settings.fullHar = false; - } - } - if ("npm-f" in args) { if (args["npm-f"] == "true") { lt_config.run_settings.npmf = true; diff --git a/index.js b/index.js index 849a240..5a2f851 100644 --- a/index.js +++ b/index.js @@ -122,11 +122,6 @@ const argv = require("yargs") describe: "Capture Network logs", type: "string", }) - .option("fullHar", { - alias: "fullHar", - describe: "Capture Full Har Network logs", - type: "bool", - }) .option("eof", { alias: "exit-on-failure", describe: "Exit With Code 1 on failure",