-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 747 Bytes
/
Copy pathpackage.json
File metadata and controls
24 lines (24 loc) · 747 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
{
"name": "petstoreplaywright",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "playwright test",
"test:allure-report": "npx playwright test --reporter=allure-playwright && npx allure generate ./allure-results --clean -o ./allure-report && npx allure open --port 5252 ./allure-report",
"test:html-report": "npx playwright test --reporter=html && npx playwright show-report"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@faker-js/faker": "^9.0.1",
"@playwright/test": "^1.47.1",
"@types/node": "^22.5.4",
"allure-commandline": "^2.30.0",
"allure-playwright": "^3.0.0"
},
"dependencies": {
"@helper-modules/env": "^1.0.3"
}
}