-
Notifications
You must be signed in to change notification settings - Fork 25.7k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(forms): add support for radio buttons #6877
Conversation
expect(value['foodFish'].checked).toEqual(false); | ||
async.done(); | ||
}); | ||
})); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
In addition to this case where you use the "change"
event, you should also have a case where one radio button becomes deselected by clicking another with the same name
(because the deselection won't have an associated event).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I added tests covering it
LGTM aside from the need for additional test case |
c2b964f
to
b1ad032
Compare
b1ad032
to
6983735
Compare
6983735
to
c7a6416
Compare
Merging PR #6877 on behalf of @btford to branch presubmit-btford-pr-6877. |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
Fixes #5133, Fixes #3104