feat(dashboard): Playwright E2E test setup with 7 critical paths#1830
Merged
OneStepAt4time merged 1 commit intodevelopfrom Apr 14, 2026
Merged
feat(dashboard): Playwright E2E test setup with 7 critical paths#1830OneStepAt4time merged 1 commit intodevelopfrom
OneStepAt4time merged 1 commit intodevelopfrom
Conversation
- Playwright installed and configured (playwright.config.ts) - 7 critical path tests: 1. Overview page loads and renders 2. Login rejects empty token 3. Session history with search 4. Session detail page loads 5. Theme toggle persists 6. CSV export button exists 7. SSE status indicator visible - CI-ready with github reporter - webServer auto-starts dev server - npm scripts: e2e, e2e:ui Closes #1829
Contributor
There was a problem hiding this comment.
✅ Approved — Playwright setup with 7 critical path tests.
Notes for follow-up:
- E2E tests are not wired into CI yet (no workflow step) — add a separate CI job that runs
npx playwright testwith a running server - Some tests use
ifguards andwaitForTimeout— harden with proper assertions in a follow-up PR - CSV export test asserts
count >= 0which is always true — needs real assertion - Good foundation for the QA infrastructure (#1829)
This was referenced Apr 14, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds Playwright E2E testing framework and 7 critical path tests for the dashboard.
Setup:
7 Critical Path Tests:
Scripts:
npm run e2e,npm run e2e:uiUnit tests: 284 passing. Closes #1829