New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

postwright

Package Overview
Dependencies
Maintainers
0
Versions
9
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

postwright - npm Package Compare versions

Comparing version

to
1.0.4-beta

2

package.json
{
"name": "postwright",
"version": "1.0.3",
"version": "1.0.4-beta",
"description": "Convert Postman Collections to Playwright scripts",

@@ -5,0 +5,0 @@ "main": "index.js",

@@ -195,5 +195,7 @@ const fs = require("fs").promises;

const startTime = Date.now();
const response = await request.${method.toLowerCase()}('${
url.raw || "undefined_url"
}');
const response = await request.${method.toLowerCase()}('${requestUrl}'${
Object.keys(requestOptions).length > 0
? `, ${JSON.stringify(requestOptions, null, 2)}`
: ""
});
const responseTime = Date.now() - startTime;

@@ -200,0 +202,0 @@ ${postResponseScript}