-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 1.01 KB
/
package.json
File metadata and controls
28 lines (28 loc) · 1.01 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
{
"name": "playwright-test",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "npx playwright test tests/apiTests.spec.js --headed",
"regression": "npx playwright test",
"webTests": "npx playwright test --grep @Web",
"APITests": "npx playwright test --grep @API",
"allureTesting": "npx playwright test ClientAppPO.spec.js --reporter=line,allure-playwright",
"alluregenreport": "allure generate ./allure-results --clean",
"allureopenreport": "allure open ./allure-report",
"onlysafarytest": "npx playwright test ClientAppPO.spec.js --config playwright.config1.js --project='safari execution'",
"CucumberRegression": "npx cucumber-js --tags '@Regression' --retry 1 --exit --format html:cucumber-report.html"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@playwright/test": "^1.29.2",
"allure": "^0.0.0",
"allure-playwright": "^2.0.0-beta.24"
},
"dependencies": {
"@cucumber/cucumber": "^9.1.0"
}
}