Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

lambdatest-cypress-cli

Package Overview
Dependencies
Maintainers
1
Versions
72
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

lambdatest-cypress-cli - npm Package Compare versions

Comparing version 2.1.2 to 2.1.3

2

commands/utils/batch/batch_runner.js

@@ -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",

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc