-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 1.03 KB
/
package.json
File metadata and controls
32 lines (32 loc) · 1.03 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
{
"name": "playwright_ts_project",
"version": "1.0.0",
"description": "creating playwright hybrid framework using Typescript.",
"main": "index.js",
"scripts": {
"test:codegen": "npx playwright codegen",
"pretest": "npx playwright install && npx rimraf playwright-report test-results",
"test": "npx playwright test || npm run posttest",
"testpw": "npx playwright test",
"test:ui": "npx playwright test --ui",
"test:chrome": "npx playwright test --project=chromium",
"test:debug": "npx playwright test --debug",
"test:headed": "npx playwright test --headed",
"posttest": "npx playwright show-report",
"dot:report": "npx playwright test --reporter=dot",
"line:report": "npx playwright test --reporter=line"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.50.1",
"@types/node": "^22.13.9",
"allure-playwright": "^3.0.9",
"rimraf": "^6.0.1"
},
"dependencies": {
"allure-js-commons": "^3.2.0",
"winston": "^3.17.0"
}
}