Skip to content
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 fixed tests that have not failed in 30 days #57978

Merged
merged 8 commits into from
Oct 4, 2024
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
using Microsoft.AspNetCore.Components.E2ETest.Infrastructure;
using Microsoft.AspNetCore.Components.E2ETest.Infrastructure.ServerFixtures;
using Microsoft.AspNetCore.E2ETesting;
using Microsoft.AspNetCore.InternalTesting;
using OpenQA.Selenium;
using TestServer;
using Xunit.Abstractions;
Expand Down Expand Up @@ -1251,7 +1250,6 @@ public void PostingFormWithErrorsDoesNotExceedMaximumErrors()
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/54447")]
public void CanBindToFormWithFiles()
{
var profilePicture = TempFile.Create(_tempDirectory, "txt", "This is a profile picture.");
Expand Down
2 changes: 0 additions & 2 deletions src/Components/test/E2ETest/Tests/RoutingTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -1679,7 +1679,6 @@ public void AnchorWithHrefToSameUrlWithParamQueryAndHash_ScrollsToElementOnTheSa
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/47967")]
public void AnchorWithHrefContainingHashAnotherPage_NavigatesToPageAndScrollsToElement()
{
SetUrlViaPushState("/");
Expand All @@ -1696,7 +1695,6 @@ public void AnchorWithHrefContainingHashAnotherPage_NavigatesToPageAndScrollsToE
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/47967")]
public void NavigationManagerNavigateToAnotherUrlWithHash_NavigatesToPageAndScrollsToElement()
{
SetUrlViaPushState("/");
Expand Down
5 changes: 0 additions & 5 deletions src/Components/test/E2ETest/Tests/ThreadingAppTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,12 @@ protected override void InitializeAsyncCore()
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/54754")]
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@MackinnonBuck I saw you mention in this issue that the test failures may be caused by dotnet/runtime#106788 which is still open.

However, you still kept the test-fixed label on the issue and I don't see any ThreadingAppTests failing at https://dev.azure.com/dnceng-public/public/_test/analytics?definitionId=84&contextType=build. Do you think these are safe to unquarantine?

public void HasTitle()
{
Assert.Equal("Blazor standalone", Browser.Title);
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/54754")]
public void HasHeading()
{
Assert.Equal("Hello, world!", Browser.Exists(By.TagName("h1")).Text);
Expand Down Expand Up @@ -69,7 +67,6 @@ public void NavMenuHighlightsCurrentLocation()
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/54754")]
public void CounterPageCanUseThreads()
{
// Navigate to "Counter"
Expand All @@ -87,7 +84,6 @@ public void CounterPageCanUseThreads()
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/54754")]
public void HasFetchDataPage()
{
// Navigate to "Fetch data"
Expand All @@ -109,7 +105,6 @@ public void HasFetchDataPage()
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/54754")]
public void IsStarted()
{
// Read from property
Expand Down
Loading