chore(frontend): update scripts and docs to use bun run test for consistency

- Replaced `bun test` with `bun run test` in all documentation and scripts for uniformity.
- Removed outdated `glob` override in package configurations.
This commit is contained in:
2026-03-01 18:44:48 +01:00
parent 846fc31190
commit 07309013d7
10 changed files with 19 additions and 13 deletions

View File

@@ -51,7 +51,7 @@ EOF
**Testing Commands:**
- Backend unit/integration: `IS_TEST=True uv run pytest` (always prefix with `IS_TEST=True`)
- Backend E2E (requires Docker): `make test-e2e`
- Frontend unit: `bun test`
- Frontend unit: `bun run test`
- Frontend E2E: `bun run test:e2e`
- Use `make test` or `make test-cov` in backend for convenience