Skip to content

Commit 20a7019

Browse files
authored
Merge pull request #284 from LambdaTest/dev
Release 3 dec
2 parents 834ab4e + 98f8354 commit 20a7019

File tree

5 files changed

+21
-8
lines changed

5 files changed

+21
-8
lines changed

commands/utils/constants.js

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ module.exports = {
3131
"https://api.lambdatest.com/automation/api/v1/cypress/artefacts/test/",
3232
},
3333
beta: {
34-
INTEGRATION_BASE_URL: "https://api-cypdevenv12-dev.lambdatestinternal.com/liis",
34+
INTEGRATION_BASE_URL: "https://api-cypdevenv22-dev.lambdatestinternal.com/liis",
3535
BUILD_BASE_URL:
36-
"https://api-cypdevenv12-dev.lambdatestinternal.com/automation/api/v1/builds/",
36+
"https://api-cypdevenv22-dev.lambdatestinternal.com/automation/api/v1/builds/",
3737
BUILD_STOP_URL:
38-
"https://api-cypdevenv12-dev.lambdatestinternal.com/api/v1/test/stop?sessionId=",
38+
"https://api-cypdevenv22-dev.lambdatestinternal.com/api/v1/test/stop?sessionId=",
3939
SESSION_URL:
40-
"https://api-cypdevenv12-dev.lambdatestinternal.com/automation/api/v1/sessions?limit=200&session_id=",
40+
"https://api-cypdevenv22-dev.lambdatestinternal.com/automation/api/v1/sessions?limit=200&session_id=",
4141
REPORT_URL:
42-
"https://api-cypdevenv12-dev.lambdatestinternal.com/automation/api/v1/cypress/artefacts/test/",
42+
"https://api-cypdevenv22-dev.lambdatestinternal.com/automation/api/v1/cypress/artefacts/test/",
4343
},
4444

4545
stage: {

commands/utils/set_args.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -489,6 +489,14 @@ function sync_args_from_cmd(args) {
489489
lt_config["run_settings"]["exclude_specs"] == [];
490490
}
491491

492+
if ("fullHar" in args) {
493+
if (args["fullHar"] == "true") {
494+
lt_config.run_settings.fullHar = true;
495+
} else {
496+
lt_config.run_settings.fullHar = false;
497+
}
498+
}
499+
492500
if ("npm-f" in args) {
493501
if (args["npm-f"] == "true") {
494502
lt_config.run_settings.npmf = true;

index.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,11 @@ const argv = require("yargs")
122122
describe: "Capture Network logs",
123123
type: "string",
124124
})
125+
.option("fullHar", {
126+
alias: "fullHar",
127+
describe: "Capture Full Har Network logs",
128+
type: "bool",
129+
})
125130
.option("eof", {
126131
alias: "exit-on-failure",
127132
describe: "Exit With Code 1 on failure",

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.22",
3+
"version": "3.0.23",
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)