-
Notifications
You must be signed in to change notification settings - Fork 10.5k
Unquarantine RadioButtonGetsResetAfterSubmittingEnhancedForm
#63556
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
Unquarantine RadioButtonGetsResetAfterSubmittingEnhancedForm
#63556
Conversation
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.
Pull Request Overview
This PR unquarantines two E2E tests that were previously failing on net8 but now have a 100% pass rate on net9. The changes remove the [QuarantinedTest]
attributes and replace synchronous assertions with WaitAssert
calls for better reliability in the form handling test.
- Removes quarantine status from two E2E tests that are now stable
- Updates form handling test to use
WaitAssert
instead of synchronous assertions for better reliability
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
File | Description |
---|---|
FormWithParentBindingContextTest.cs | Removes quarantine attribute and replaces Assert calls with WaitAssert for radio button form test |
EnhancedNavigationTest.cs | Removes quarantine attribute from navigation manager URI update test |
|
NavigationManagerUriGetsUpdatedOnEnhancedNavigation_BothServerAndWebAssembly
and RadioButtonGetsResetAfterSubmittingEnhancedForm
RadioButtonGetsResetAfterSubmittingEnhancedForm
Investigating failures from #63534, I found out that these issues that fail on net8 have 100% pass rate on net9. They can be enabled.
Issues that they refer to are resolved for main. On main we added
WaitAssert
in the place that was reported originally as failing. We can backport that change as well.