-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.36 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1.36 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
{
"name": "playwright-ui-testing",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"setup": "npm install && npx playwright install",
"setup:info": "echo 'Run this once after cloning the project'",
"test": "npx bddgen && npx playwright test",
"test:info": "echo 'Run all suites (BDD + non-BDD)'",
"test:ui": "npx bddgen && npx playwright test --ui",
"test:ui:info": "echo 'Open Playwright UI mode'",
"test:bdd": "npx bddgen && npx playwright test --project=bdd-tests",
"test:bdd:info": "echo 'Run BDD tests only (Gherkin feature files)'",
"test:non-bdd": "npx playwright test --project=non-bdd-tests",
"test:non-bdd:info": "echo 'Run non-BDD tests only (POM direct)'",
"bddgen": "npx bddgen",
"bddgen:info": "echo 'Generate test files from .feature files'",
"report": "npx playwright show-report",
"report:info": "echo 'Open Playwright HTML report'",
"allure:serve": "npx allure serve allure-results",
"allure:serve:info": "echo 'Serve Allure report in browser'"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"devDependencies": {
"@playwright/test": "^1.61.1",
"@types/node": "^26.0.1",
"allure-commandline": "^2.43.0",
"allure-playwright": "^3.10.2",
"dotenv": "^17.4.2",
"playwright-bdd": "^9.2.0",
"typescript": "^6.0.3"
}
}