lambdatest-cypress-cli
Advanced tools
Comparing version 2.1.2 to 2.1.3
@@ -69,3 +69,3 @@ const path = require("path"); | ||
totalBatches = batches.length; | ||
console.log("Total number of batches " + totalBatches); | ||
//console.log("Total number of batches " + totalBatches); | ||
return new Promise(function (resolve, reject) { | ||
@@ -72,0 +72,0 @@ //archive the project i.e the current working directory |
@@ -10,3 +10,3 @@ module.exports = { | ||
platform: "Windows 10", | ||
versions: ["86.0"], | ||
versions: ["latest-1"], | ||
}, | ||
@@ -16,3 +16,3 @@ { | ||
platform: "Windows 10", | ||
versions: ["82.0"], | ||
versions: ["latest-1"], | ||
}, | ||
@@ -29,3 +29,3 @@ ], | ||
headless: false, | ||
reporter_config_file: "" | ||
reporter_config_file: "", | ||
}, | ||
@@ -32,0 +32,0 @@ tunnel_settings: { |
@@ -26,4 +26,12 @@ const poller = require("./build_stats.js"); | ||
.then(function (build_info) { | ||
stats = {}; | ||
let stats = {}; | ||
let status = []; | ||
for (i = 0; i < build_info["data"].length; i++) { | ||
status.push({ | ||
Spec: build_info["data"][i]["name"], | ||
Status: build_info["data"][i]["status_ind"], | ||
Platform: build_info["data"][i]["platform"], | ||
Browser: build_info["data"][i]["browser"], | ||
Version: build_info["data"][i]["version"], | ||
}); | ||
if (stats.hasOwnProperty(build_info["data"][i]["status_ind"])) { | ||
@@ -33,2 +41,3 @@ stats[build_info["data"][i]["status_ind"]] += 1; | ||
} | ||
console.table(status); | ||
console.log(stats); | ||
@@ -35,0 +44,0 @@ if ( |
@@ -52,6 +52,3 @@ const constants = require("./constants.js"); | ||
if (process.env.LT_ACCESS_KEY) { | ||
console.log( | ||
"setting access key from environment", | ||
process.env.LT_ACCESS_KEY | ||
); | ||
console.log("setting access key from environment"); | ||
lt_config["lambdatest_auth"]["access_key"] = process.env.LT_ACCESS_KEY; | ||
@@ -67,6 +64,3 @@ } | ||
} | ||
console.log( | ||
"Setting access key from environment", | ||
process.env.LT_ACCESS_KEY | ||
); | ||
console.log("Setting access key from environment"); | ||
lt_config["lambdatest_auth"]["access_key"] = process.env.LT_ACCESS_KEY; | ||
@@ -73,0 +67,0 @@ } |
{ | ||
"name": "lambdatest-cypress-cli", | ||
"version": "2.1.2", | ||
"version": "2.1.3", | ||
"description": "The lambdatest-cypress-cli is LambdaTest's command-line interface (CLI) aimed to help you run your Cypress tests on LambdaTest platform.", | ||
@@ -5,0 +5,0 @@ "homepage": "https://github.com/LambdaTest/lambdatest-cypress-cli", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
30
62090
20
1685