-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 991 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 991 Bytes
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": "petstore-api-testing",
"version": "1.0.0",
"description": "Playwright API testing framework for Petstore API",
"main": "index.js",
"scripts": {
"test": "playwright test",
"test:headed": "playwright test --headed",
"test:debug": "playwright test --debug",
"test:ui": "playwright test --ui",
"test:report": "playwright show-report",
"allure:generate": "allure generate allure-results --clean -o allure-report",
"allure:open": "allure open allure-report",
"allure:serve": "allure serve allure-results",
"test:allure": "npm test && npm run allure:generate && npm run allure:open"
},
"keywords": [
"playwright",
"api-testing",
"petstore"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.40.0",
"@types/node": "^20.10.0",
"allure-commandline": "2.36.0",
"allure-playwright": "3.4.4",
"typescript": "^5.3.0"
},
"dependencies": {
"playwright": "1.57.0"
}
}