-
Notifications
You must be signed in to change notification settings - Fork 13.4k
test(radio): remove legacy tests #29016
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
Conversation
<ion-item> | ||
<ion-radio aria-label="Radio" disabled slot="start"></ion-radio> | ||
<ion-input aria-label="Input" placeholder="Disabled Radio w/ Input"></ion-input> | ||
<ion-input aria-label="Input" placeholder="Input"></ion-input> | ||
</ion-item> | ||
|
||
<ion-item> | ||
<ion-radio aria-label="Radio" disabled slot="end"></ion-radio> | ||
<ion-input aria-label="Input" placeholder="Disabled Radio w/ Input"></ion-input> | ||
<ion-input aria-label="Input" placeholder="Input"></ion-input> | ||
</ion-item> |
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.
These two items are now exactly the same. This category is checking multiple different inputs in the same item, one of which is disabled and the other isn't, which is lost now that the radios are removed. If we don't think that check is still useful, we should remove the items entirely.
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.
Brandy is removing the input usage in #29017
<ion-item> | ||
<ion-radio disabled slot="start" legacy="true"></ion-radio> | ||
<ion-input placeholder="Disabled Radio w/ Input" legacy="true"></ion-input> | ||
<ion-input placeholder="Input" legacy="true"></ion-input> |
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.
Same comments here as in item/test/disabled
above.
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.
Same comment as #29016 (comment)
This PR removes the tests for the legacy radio syntax. A separate PR will be used to remove the implementation for the legacy syntax.