2026-05-04 15:28:44 +02:00
|
|
|
{
|
|
|
|
|
"name": "e2e",
|
|
|
|
|
"version": "1.0.0",
|
|
|
|
|
"description": "",
|
|
|
|
|
"main": "index.js",
|
|
|
|
|
"scripts": {
|
2026-05-11 00:50:39 +02:00
|
|
|
"pretest": "bash ../common/spawn-db.sh",
|
2026-05-26 02:34:07 +02:00
|
|
|
"test": "FORCE_COLOR=true npx playwright test scenarios/01-home-and-login.spec.ts scenarios/02-folder-management.spec.ts",
|
2026-06-21 20:03:32 -06:00
|
|
|
"posttest": "bash ../common/stop-db.sh",
|
|
|
|
|
"test:containers": "OXICLOUD_E2E_CONTAINERS=1 FORCE_COLOR=true npx playwright test -c playwright.containers.config.ts",
|
|
|
|
|
"build:spa": "cd ../../frontend && COVERAGE=1 VITE_E2E=1 npm run build",
|
|
|
|
|
"test:coverage": "FORCE_COLOR=true npx playwright test -c playwright.coverage.config.ts",
|
|
|
|
|
"coverage:report": "node coverage-report.cjs e2e",
|
|
|
|
|
"coverage:report:unit": "node coverage-report.cjs unit",
|
|
|
|
|
"coverage:report:combined": "node coverage-report.cjs combined"
|
2026-05-04 15:28:44 +02:00
|
|
|
},
|
|
|
|
|
"keywords": [],
|
|
|
|
|
"author": "",
|
|
|
|
|
"license": "ISC",
|
|
|
|
|
"type": "commonjs",
|
|
|
|
|
"devDependencies": {
|
2026-05-27 11:49:21 +02:00
|
|
|
"@playwright/test": "^1.60.0",
|
2026-06-21 20:03:32 -06:00
|
|
|
"@testcontainers/postgresql": "^11.0.0",
|
|
|
|
|
"@types/node": "^25.6.0",
|
|
|
|
|
"nyc": "^18.0.0",
|
|
|
|
|
"testcontainers": "^11.0.0"
|
2026-05-04 15:28:44 +02:00
|
|
|
}
|
|
|
|
|
}
|