Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/Components/test/E2ETest/Tests/RoutingTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -970,6 +970,7 @@ public void NavigationLock_OverlappingNavigationsCancelExistingNavigations_PushS
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/61080")]
public void NavigationLock_OverlappingNavigationsCancelExistingNavigations_HistoryNavigation()
{
SetUrlViaPushState("/");
Expand Down
2 changes: 2 additions & 0 deletions src/Grpc/Interop/test/InteropTests/InteropTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ public InteropTests(ITestOutputHelper output)
public Task EmptyUnary() => InteropTestCase("empty_unary");

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/61057")]
public Task LargeUnary() => InteropTestCase("large_unary");

[Fact]
Expand All @@ -37,6 +38,7 @@ public InteropTests(ITestOutputHelper output)
public Task PingPong() => InteropTestCase("ping_pong");

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/61051")]
public Task EmptyStream() => InteropTestCase("empty_stream");

[Fact]
Expand Down
1 change: 1 addition & 0 deletions src/Middleware/HttpLogging/test/W3CLoggerTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ public async Task WritesDateTime()
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/61052")]
public async Task HandlesNullValuesAsync()
{
var path = Path.GetTempFileName() + "_";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ public async Task Copy_DoNothingWhenNoSegments()
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/61053")]
public async Task Copy_SingleSegment()
{
var segments = new List<byte[]>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ public Latin1Tests(PublishedSitesFixture fixture) : base(fixture)

[ConditionalFact]
[RequiresNewHandler]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/61055")]
public async Task Latin1Works()
{
var deploymentParameters = Fixture.GetBaseDeploymentParameters();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -399,6 +399,7 @@ public async Task Reset_BeforeRequestBody_Resets()
[ConditionalFact]
[RequiresNewHandler]
[MinimumOSVersion(OperatingSystems.Windows, WindowsVersionForTrailers)]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/61056")]
public async Task Reset_DuringRequestBody_Resets()
{
await new HostBuilder()
Expand Down
Loading