-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 1.23 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "postman-newman-api-testing",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"test:dev": "newman run collections/JSONPlaceholder_API_Tests.postman_collection.json -e environments/JSONPlaceholder-Dev.postman_environment.json -r cli,htmlextra --reporter-htmlextra-export reports/dev-report.html",
"test:qa": "newman run collections/JSONPlaceholder_API_Tests.postman_collection.json -e environments/JSONPlaceholder-QA.postman_environment.json -r cli,htmlextra --reporter-htmlextra-export reports/qa-report.html",
"test:staging": "newman run collections/JSONPlaceholder_API_Tests.postman_collection.json -e environments/JSONPlaceholder-Staging.postman_environment.json -r cli,htmlextra --reporter-htmlextra-export reports/staging-report.html",
"test:all": "npm run test:dev && npm run test:qa && npm run test:staging",
"test:smoke": "newman run collections/JSONPlaceholder_API_Tests.postman_collection.json -e environments/JSONPlaceholder-Dev.postman_environment.json --folder \"1. POST - GET\" -r cli"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"newman": "^6.2.2",
"newman-reporter-htmlextra": "^1.23.1"
}
}