test(e2e): add public verification flow tests (#349)#439
Merged
dev-fatima-24 merged 1 commit intoMay 31, 2026
Merged
Conversation
- Navigate to /verify page - Vaccinated wallet shows Verified badge with record count and NFT details - Unvaccinated wallet shows No Records Found badge - Invalid wallet format shows client-side error / blocks submission
|
Hey @daree-dev! 👋 It looks like this PR isn't linked to any issue. If this PR is for one of the issues assigned to you as part of a Wave, please link it to ensure your contribution is tracked properly. You can do this by adding a keyword to the PR description (e.g.,
|
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.
Summary
Adds a Playwright E2E test for the public verification flow, covering all acceptance criteria from issue #349.
Changes
frontend/e2e/public-verification.spec.js— new test file (4 tests)Acceptance Criteria Coverage
navigates to the Verification Pageshows Verified badge with record count for vaccinated walletshows No Records Found badge for unvaccinated walletshows error message for invalid wallet formatTesting
All API calls are intercepted via Playwright route mocks — no real backend required.
Tests run under
npm run test:e2e(chromium/firefox/webkit).