Some checks are pending
CI / Lint bridge (Biome) (push) Waiting to run
CI / Type-check bridge (push) Blocked by required conditions
CI / Tests unit bridge (push) Blocked by required conditions
CI / Tests integration bridge (push) Blocked by required conditions
CI / Security scan (push) Waiting to run
CI / Docker build + healthcheck (push) Blocked by required conditions
E2E Playwright / Playwright e2e (chromium) (push) Waiting to run
- Uncomment bridge service in compose.yml so stack runs end-to-end on prod - Add _byan-output/ to .gitignore (BYAN session notes, may contain credentials) - Untrack previously committed _byan-output/ files - Include e2e Stagehand config and smoke env template
28 lines
920 B
JSON
28 lines
920 B
JSON
{
|
|
"name": "formation-hub-e2e",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "Playwright e2e cross-stack tests — R3.1.e (bridge + DocAdenice + Baserow)",
|
|
"scripts": {
|
|
"e2e": "playwright test",
|
|
"e2e:headed": "playwright test --headed",
|
|
"e2e:debug": "playwright test --debug",
|
|
"e2e:ci": "playwright test --reporter=github,html",
|
|
"e2e:list": "playwright test --list",
|
|
"smoke": "playwright test --config=playwright.smoke.config.ts",
|
|
"smoke:report": "tsx scripts/generate-smoke-report.ts",
|
|
"smoke:full": "playwright test --config=playwright.smoke.config.ts; tsx scripts/generate-smoke-report.ts"
|
|
},
|
|
"devDependencies": {
|
|
"@browserbasehq/stagehand": "^3.3.0",
|
|
"@playwright/test": "^1.44.0",
|
|
"dotenv": "^16.4.5",
|
|
"playwright-core": "^1.59.1",
|
|
"tsx": "^4.21.0",
|
|
"typescript": "^5.4.5",
|
|
"zod": "^4.4.3"
|
|
},
|
|
"engines": {
|
|
"node": ">=22"
|
|
}
|
|
}
|