-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 833 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 833 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
{
"name": "playwright-testleaf",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test:ui": "rimraf allure-results && playwright test tests/UI --headed --project=chrome",
"test:all": "rimraf allure-results && playwright test",
"allure:gen": "allure generate allure-results --clean -o allure-report",
"allure:open": "allure open allure-report",
"allure:serve": "allure serve allure-results"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"@faker-js/faker": "^8.4.1",
"@playwright/test": "^1.57.0",
"@types/node": "^25.0.9",
"allure-commandline": "^2.38.0",
"allure-playwright": "^3.6.0"
},
"dependencies": {
"csv-parse": "^6.1.0",
"dotenv": "^17.3.1",
"fs": "^0.0.1-security"
}
}