-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
34 lines (34 loc) · 955 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "apitesting",
"version": "1.0.0",
"description": "api-test-automation-by-supertest",
"main": "index.js",
"scripts": {
"test": "./node_modules/jest/bin/jest.js --detectOpenHandles",
"smoke": "./node_modules/jest/bin/jest.js --testPathPattern=specs/smoke/smoke_api_testing.spec.js",
"regression": "./node_modules/jest/bin/jest.js --testPathPattern=specs/regression/regression_api_testing.spec.js"
},
"author": "srinu kodi",
"license": "ISC",
"devDependencies": {
"jest": "^23.5.0",
"jest-cli": "^23.4.1",
"jest-html-reporter": "^2.4.1",
"superagent": "^3.8.3",
"superagent-retry": "^0.6.0",
"supertest": "^3.1.0"
},
"jest": {
"reporters": [
"default",
[
"./node_modules/jest-html-reporter",
{
"pageTitle": "API Test Execution Report",
"outputPath": "results/index.html",
"includeFailureMsg": true
}
]
]
}
}