Skip to content

Commit 5049ba0

Browse files
Skiping all the CircuitGracefulTerminationTests tests to see if there's a deeper problem
1 parent 48b1535 commit 5049ba0

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

src/Components/test/E2ETest/ServerExecutionTests/CircuitGracefulTerminationTests.cs

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ protected override void InitializeAsyncCore()
4949
Sink.MessageLogged += Log;
5050
}
5151

52-
[Fact]
52+
[Fact(Skip = "Even as quarantined, it takes so long that it times out the whole build: https://github.com/dotnet/aspnetcore/issues/44185")]
5353
public async Task ReloadingThePage_GracefullyDisconnects_TheCurrentCircuit()
5454
{
5555
// Arrange & Act
@@ -61,8 +61,7 @@ public async Task ReloadingThePage_GracefullyDisconnects_TheCurrentCircuit()
6161
Assert.Contains((Extensions.Logging.LogLevel.Debug, "CircuitDisconnectedPermanently"), Messages.ToArray());
6262
}
6363

64-
[Fact]
65-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/44185")]
64+
[Fact(Skip = "Even as quarantined, it takes so long that it times out the whole build: https://github.com/dotnet/aspnetcore/issues/44185")]
6665
public async Task ClosingTheBrowserWindow_GracefullyDisconnects_TheCurrentCircuit()
6766
{
6867
// Arrange & Act
@@ -75,7 +74,7 @@ public async Task ClosingTheBrowserWindow_GracefullyDisconnects_TheCurrentCircui
7574
Assert.Contains((Extensions.Logging.LogLevel.Debug, "CircuitDisconnectedPermanently"), Messages.ToArray());
7675
}
7776

78-
[Fact]
77+
[Fact(Skip = "Even as quarantined, it takes so long that it times out the whole build: https://github.com/dotnet/aspnetcore/issues/44185")]
7978
public async Task ClosingTheBrowserWindow_GracefullyDisconnects_WhenNavigatingAwayFromThePage()
8079
{
8180
// Arrange & Act
@@ -88,7 +87,7 @@ public async Task ClosingTheBrowserWindow_GracefullyDisconnects_WhenNavigatingAw
8887
Assert.Contains((Extensions.Logging.LogLevel.Debug, "CircuitDisconnectedPermanently"), Messages.ToArray());
8988
}
9089

91-
[Fact]
90+
[Fact(Skip = "Even as quarantined, it takes so long that it times out the whole build: https://github.com/dotnet/aspnetcore/issues/44185")]
9291
public async Task NavigatingToProtocolLink_DoesNotGracefullyDisconnect_TheCurrentCircuit()
9392
{
9493
// Arrange & Act
@@ -101,7 +100,7 @@ public async Task NavigatingToProtocolLink_DoesNotGracefullyDisconnect_TheCurren
101100
Assert.DoesNotContain((Extensions.Logging.LogLevel.Debug, "CircuitDisconnectedPermanently"), Messages.ToArray());
102101
}
103102

104-
[Fact]
103+
[Fact(Skip = "Even as quarantined, it takes so long that it times out the whole build: https://github.com/dotnet/aspnetcore/issues/44185")]
105104
public async Task DownloadAction_DoesNotGracefullyDisconnect_TheCurrentCircuit()
106105
{
107106
// Arrange & Act
@@ -114,7 +113,7 @@ public async Task DownloadAction_DoesNotGracefullyDisconnect_TheCurrentCircuit()
114113
Assert.DoesNotContain((Extensions.Logging.LogLevel.Debug, "CircuitDisconnectedPermanently"), Messages.ToArray());
115114
}
116115

117-
[Fact]
116+
[Fact(Skip = "Even as quarantined, it takes so long that it times out the whole build: https://github.com/dotnet/aspnetcore/issues/44185")]
118117
public async Task DownloadHref_DoesNotGracefullyDisconnect_TheCurrentCircuit()
119118
{
120119
// Arrange & Act

0 commit comments

Comments
 (0)