-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 1.28 KB
/
package.json
File metadata and controls
23 lines (23 loc) · 1.28 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "hyades",
"version": "0.6.0",
"description": "Hyades is the followup project, that decouples the responsibilities from Dependency-Track's monolithic API-server into separate scalable services",
"scripts": {
"playwright:init": "npm ci && npx playwright install --with-deps",
"playwright:generate:tests": "npx bddgen",
"playwright:clean:initial:chromium": "npx bddgen && npx playwright test --project=setup_initial",
"playwright:clean:test:chromium": "npx bddgen && npx playwright test --project=setup_initial && npx playwright test --project=chromium_test_workflow",
"playwright:test:chromium": "npx bddgen && npx playwright test --project=chromium_test_workflow",
"playwright:test:only:chromium": "npx bddgen && npx playwright test --project=chromium_test_only_workflow",
"playwright:test:firefox": "npx bddgen && npx playwright test --project=firefox_test_workflow",
"playwright:test:webkit": "npx bddgen && npx playwright test --project=webkit_test_workflow",
"playwright:show:report": "npx playwright show-report ../../playwright-test-results/playwright-report"
},
"license": "Apache-2.0",
"devDependencies": {
"@playwright/test": "^1.56.1",
"@types/node": "^25.2.1",
"allure-playwright": "^3.4.4",
"playwright-bdd": "^8.4.1"
}
}