-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
26 lines (26 loc) · 873 Bytes
/
package.json
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
{
"name": "playwrightautomationsuite",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test:codegen": "npx playwright codegen",
"pretest":"npx playwright install",
"test": "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",
"post----test": "npx playwright show-report",
"dot:report": "npx playwright test --reporter=dot",
"line:report": "npx playwright test --reporter=line",
"post---test": "allure generate allure-results --clean -o allure-report && allure open allure-report"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.32.3",
"allure-playwright": "^2.2.0"
}
}