Comparing version
{ | ||
"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} |
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
122794
0.08%356
0.56%2
100%