a11y: coverage reporting, WCAG AA audits, and keyboard navigation - #517
Merged
phertyameen merged 1 commit intoAug 28, 2026
Merged
Conversation
|
@bobaivigitalpoint-ui Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
|
@bobaivigitalpoint-ui is attempting to deploy a commit to the aminubabafatima8-gmailcom's projects Team on Vercel. A member of the Team first needs to authorize it. |
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.
Resolves #464
Resolves #465
Resolves #466
Resolves #467
Summary
#464 — Test coverage reporting integration
Added coverage reporting to
frontend-ci.yml:npm run test:coverage(vitest v8/lcov, already configured invitest.config.ts)lcov.infoto Codecov (codecov/codecov-action@v4), informational only — no hard gateactions/github-script#465 — WCAG 2.1 AA audit for the send flow
frontend/tests/a11y/send-flow-audit.test.tsxruns axe-core againstSendPageClientandBatchSendFormfrontend/tests/a11y/axe.tswrapsaxe.rundocs/A11Y_SEND_FLOW_AUDIT.md(automated + manual keyboard-only method, findings are triaged as follow-ups)#466 — WCAG 2.1 AA audit for the claim flow
frontend/tests/a11y/claim-flow-audit.test.tsxruns axe-core against both the new-wallet (AccessibleClaimForm) and existing-wallet (ClaimStatusCard) pathsdocs/A11Y_CLAIM_FLOW_AUDIT.mdincluding screen reader walkthrough notes#467 — Keyboard navigation support across core flows
:focus-visibleoutline (WCAG 2.1 AA 2.4.7) plus a skip-link pattern (2.4.1) tofrontend/app/globals.cssfrontend/tests/a11y/keyboard-navigation.test.tsxverifies the send mode toggle and claim form are fully completable with keyboard only (Tab/Enter/Space)Also added
axe-coredev dependency and atest:a11yscript. No code was read/modified outside scope; changes are minimal and additive.