-
Notifications
You must be signed in to change notification settings - Fork 10.5k
[Blazor] Skip tests in ThreadingHostedAppTest and ThreadingAppTest #63525
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
…ith Skip attributes Co-authored-by: javiercn <6995051+javiercn@users.noreply.github.com>
|
||
[Fact] | ||
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/54761")] | ||
[Fact(Skip = "Test skipped due to unreliability. See https://github.com/dotnet/aspnetcore/issues/63524")] |
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.
@copilot Just use the URL in all the skipped tests. Do not add any additional text
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.
Updated all skip messages to use only the URL. Commit 3b0bd8d
Co-authored-by: javiercn <6995051+javiercn@users.noreply.github.com>
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 updates Blazor E2E tests to skip flaky tests by replacing QuarantinedTest attributes with Fact Skip attributes. The change consolidates various test failures under a single GitHub issue (#63524) for better tracking.
- Replaced QuarantinedTest attributes with Fact(Skip = "...") attributes across 10 test methods
- Unified skip messages to reference issue #63524 instead of multiple different issues
- Simplified skip messages to contain only the GitHub URL without additional explanatory text
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated no comments.
File | Description |
---|---|
src/Components/test/E2ETest/Tests/ThreadingAppTest.cs | Updated 6 test methods to use skip attributes instead of quarantine attributes |
src/Components/test/E2ETest/Tests/ThreadingAppHostedTest.cs | Updated 4 test methods to use skip attributes instead of quarantine attributes |
/backport to release/10.0 |
Started backporting to release/10.0: https://github.com/dotnet/aspnetcore/actions/runs/17459604167 |
All skip messages now contain only
"https://github.com/dotnet/aspnetcore/issues/63524"
as requested in the code review feedback.Fixes #63524.
💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click here to start the survey.