-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.22 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.22 KB
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
35
36
37
38
39
40
{
"name": "api_test_flow",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "playwright test",
"test:ui": "playwright test --ui",
"test:headed": "playwright test --headed",
"test:report": "playwright show-report",
"test:media": "playwright test tests/media/",
"test:live": "playwright test tests/live/",
"test:show": "playwright test tests/show/",
"test:playlist": "playwright test tests/playlist/",
"test:debug": "playwright test --debug",
"install:browsers": "playwright install",
"notify:slack": "node notify-slack.js",
"allure:generate": "allure generate allure-results --clean -o allure-report",
"allure:open": "allure open allure-report",
"allure:serve": "allure serve allure-results",
"allure:clean": "rimraf allure-results allure-report"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"@faker-js/faker": "^7.6.0",
"@playwright/test": "^1.56.1",
"@types/node": "^24.8.1",
"allure-commandline": "^2.37.0",
"allure-playwright": "^3.5.0",
"zod": "^4.3.6"
},
"dependencies": {
"axios": "^1.12.2",
"dotenv": "^17.2.3",
"winston": "^3.18.3"
}
}