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

loadmill

Package Overview
Dependencies
Maintainers
3
Versions
100
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

loadmill - npm Package Compare versions

Comparing version 4.2.1 to 4.2.2

10

lib/index.js

@@ -45,3 +45,3 @@ "use strict";

testResult = toTestResult(testDef, webUrl, body);
redactData(testResult, body, testingServer);
redactData(testResult, body);
if (callback) {

@@ -202,4 +202,4 @@ callback(null, testResult);

}
function redactData(testResult, body, testingServer) {
testResult.testSuitesRuns = reductTestSuitesRuns(body.testSuitesRuns, testingServer);
function redactData(testResult, body) {
testResult.testSuitesRuns = reductTestSuitesRuns(body.testSuitesRuns);
}

@@ -241,3 +241,3 @@ function isTestInFinalState(body, runType) {

}
function reductTestSuitesRuns(suitesRuns, testingServer) {
function reductTestSuitesRuns(suitesRuns) {
if (suitesRuns) {

@@ -250,3 +250,3 @@ return suitesRuns.map(function (s) {

status: s.status,
url: getTestWebUrl({ id: s.id, type: Loadmill.TYPES.SUITE }, testingServer),
url: s.url,
passed: s.status === "PASSED",

@@ -253,0 +253,0 @@ startTime: s.startTime,

{
"name": "loadmill",
"version": "4.2.1",
"version": "4.2.2",
"description": "A node.js module for running load tests and functional tests on loadmill.com",

@@ -5,0 +5,0 @@ "keywords": [

@@ -54,3 +54,3 @@ import './polyfills'

redactData(testResult, body, testingServer);
redactData(testResult, body);

@@ -209,4 +209,4 @@ if (callback) {

function redactData(testResult: Loadmill.TestResult, body: any, testingServer: string) {
testResult.testSuitesRuns = reductTestSuitesRuns(body.testSuitesRuns, testingServer);
function redactData(testResult: Loadmill.TestResult, body: any) {
testResult.testSuitesRuns = reductTestSuitesRuns(body.testSuitesRuns);
}

@@ -251,3 +251,3 @@

function reductTestSuitesRuns(suitesRuns, testingServer) {
function reductTestSuitesRuns(suitesRuns) {
if (suitesRuns) {

@@ -261,3 +261,3 @@ return suitesRuns.map(s => {

status: s.status,
url: getTestWebUrl({ id: s.id, type: Loadmill.TYPES.SUITE }, testingServer),
url: s.url,
passed: s.status === "PASSED",

@@ -264,0 +264,0 @@ startTime: s.startTime,

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