postman-pat
Version:
Runs multiple postman collections in sequence, discovers vars by naming convention
37 lines • 663 B
JSON
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch",
"type": "node",
"request": "launch",
"program": "index.js",
"stopOnEntry": false,
"args": [
"samples/sample.json.postman_collection",
"samples/sample_copy.json.postman_collection",
"-e",
"samples/sample.postman_environment",
"-d",
"samples/data"
],
"cwd": ".",
"runtimeExecutable": null,
"runtimeArgs": [
"--nolazy"
],
"env": {
"NODE_ENV": "development"
},
"externalConsole": false,
"sourceMaps": false,
"outDir": null
},
{
"name": "Attach",
"type": "node",
"request": "attach",
"port": 5858
}
]
}