- Public QR menu: BFF proxy endpoints (no auth), PosDataService public methods - Revenue analytics + staff performance: Dapper queries, validators, BFF proxy - Playwright E2E tests: 8 spec files covering auth, admin, 5 POS verticals, reports - Observability: Grafana dashboard (HTTP metrics, infra, business), Prometheus alert rules - Fixes: validator frozen-date bug (Must vs LessThanOrEqualTo), PublicMenuController logging + CancellationToken Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
23 lines
859 B
JSON
23 lines
859 B
JSON
{
|
|
"name": "webclienttpos-e2e",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"scripts": {
|
|
"test": "npx playwright test",
|
|
"test:headed": "npx playwright test --headed",
|
|
"test:ui": "npx playwright test --ui",
|
|
"test:auth": "npx playwright test tests/auth.spec.ts",
|
|
"test:admin": "npx playwright test tests/admin-dashboard.spec.ts",
|
|
"test:karaoke": "npx playwright test tests/pos-karaoke.spec.ts",
|
|
"test:restaurant": "npx playwright test tests/pos-restaurant.spec.ts",
|
|
"test:cafe": "npx playwright test tests/pos-cafe.spec.ts",
|
|
"test:retail": "npx playwright test tests/pos-retail.spec.ts",
|
|
"test:spa": "npx playwright test tests/pos-spa.spec.ts",
|
|
"test:reports": "npx playwright test tests/reports.spec.ts",
|
|
"report": "npx playwright show-report"
|
|
},
|
|
"devDependencies": {
|
|
"@playwright/test": "^1.48.0"
|
|
}
|
|
}
|