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

pactum

Package Overview
Dependencies
Maintainers
1
Versions
113
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

pactum - npm Package Compare versions

Comparing version 1.0.11 to 1.0.12

5

package.json
{
"name": "pactum",
"version": "1.0.11",
"version": "1.0.12",
"description": "REST API endpoint testing tool with a mock server & compatible with pact.io for contract testing",

@@ -41,4 +41,3 @@ "main": "src/index.js",

"request": "^2.88.0",
"request-promise": "^4.2.5",
"winston": "^3.2.1"
"request-promise": "^4.2.5"
},

@@ -45,0 +44,0 @@ "devDependencies": {

3

src/helpers/store.js

@@ -20,3 +20,4 @@ const fs = require('fs');

const count = this.interactionExerciseCounter.get(id);
this.interactionExerciseCounter.set(id, ++count);
const newCount = count + 1;
this.interactionExerciseCounter.set(id, newCount);
} else {

@@ -23,0 +24,0 @@ this.interactionExerciseCounter.set(id, 1);

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