Test/dialogs 01 component#778
Open
Devadakene wants to merge 2 commits into
Open
Conversation
|
@Devadakene 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! 🚀 |
Devadakene
force-pushed
the
test/dialogs-01-component
branch
from
July 25, 2026 14:27
0ea087c to
b48223e
Compare
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.
Closes #543
Description
This PR addresses the issue of the dialogs component's states and interactions being under-tested. It implements state support in
ConfirmDialogand adds comprehensive React Testing Library tests for all major component states to maintain our >95% test coverage requirement.Specifically, it introduces backwards-compatible props (
isLoading,isEmpty,error,isSuccess) to allow for explicit loading, empty, error, and success states within the dialog, fulfilling standard dialog interaction patterns. Existing usages ofConfirmDialogare entirely unaffected as these new props default to undefined.Closes #
Type of Change
Pre-flight Checklist
All items must be checked before requesting review.
npm run lintpasses with no errorsnpm testpasses with no failuresnpm run buildcompletes successfullyTesting & Coverage
(run
npm test -- --coverageand check the per-file table)the shared utilities in
src/test-utils/a11y.tsxWhat was tested?
Added new isolated unit tests in
ConfirmDialog.test.tsxfor:Test Output:
Accessibility & Security Notes
Accessibility
Standard React Testing Library queries by semantic role (e.g.,
getByRole('alert'),getByRole('status')) were used to verify that state messages are exposed to assistive technology properly.Security
N/A - no authentication, wallet logic, or security-sensitive paths modified.