-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1004 Bytes
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1004 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
{
"name": "playwright-the-internet-tests",
"version": "1.0.0",
"description": "https://the-internet.herokuapp.com/",
"main": "index.js",
"scripts": {
"test": "playwright test",
"test:debug": "playwright test --debug",
"test:report": "npx playwright show-report",
"report:allure": "npx allure-commandline generate ./allure-results --clean -o ./allure-report && npx allure-commandline open ./allure-report",
"allure:report": "allure generate allure-results --clean -o allure-report",
"allure:open": "allure open allure-report"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@babel/eslint-parser": "^7.26.5",
"@eslint/js": "^9.19.0",
"@playwright/test": "^1.52.0",
"@types/node": "^22.15.21",
"allure-commandline": "^2.34.1",
"allure-playwright": "^3.3.2",
"eslint": "^9.19.0",
"eslint-plugin-playwright": "^2.2.0",
"globals": "^15.14.0"
},
"dependencies": {
"@faker-js/faker": "^9.4.0"
}
}