@@ -49,7 +49,7 @@ protected override void InitializeAsyncCore()
49
49
Sink . MessageLogged += Log ;
50
50
}
51
51
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" ) ]
53
53
public async Task ReloadingThePage_GracefullyDisconnects_TheCurrentCircuit ( )
54
54
{
55
55
// Arrange & Act
@@ -61,8 +61,7 @@ public async Task ReloadingThePage_GracefullyDisconnects_TheCurrentCircuit()
61
61
Assert . Contains ( ( Extensions . Logging . LogLevel . Debug , "CircuitDisconnectedPermanently" ) , Messages . ToArray ( ) ) ;
62
62
}
63
63
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" ) ]
66
65
public async Task ClosingTheBrowserWindow_GracefullyDisconnects_TheCurrentCircuit ( )
67
66
{
68
67
// Arrange & Act
@@ -75,7 +74,7 @@ public async Task ClosingTheBrowserWindow_GracefullyDisconnects_TheCurrentCircui
75
74
Assert . Contains ( ( Extensions . Logging . LogLevel . Debug , "CircuitDisconnectedPermanently" ) , Messages . ToArray ( ) ) ;
76
75
}
77
76
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" ) ]
79
78
public async Task ClosingTheBrowserWindow_GracefullyDisconnects_WhenNavigatingAwayFromThePage ( )
80
79
{
81
80
// Arrange & Act
@@ -88,7 +87,7 @@ public async Task ClosingTheBrowserWindow_GracefullyDisconnects_WhenNavigatingAw
88
87
Assert . Contains ( ( Extensions . Logging . LogLevel . Debug , "CircuitDisconnectedPermanently" ) , Messages . ToArray ( ) ) ;
89
88
}
90
89
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" ) ]
92
91
public async Task NavigatingToProtocolLink_DoesNotGracefullyDisconnect_TheCurrentCircuit ( )
93
92
{
94
93
// Arrange & Act
@@ -101,7 +100,7 @@ public async Task NavigatingToProtocolLink_DoesNotGracefullyDisconnect_TheCurren
101
100
Assert . DoesNotContain ( ( Extensions . Logging . LogLevel . Debug , "CircuitDisconnectedPermanently" ) , Messages . ToArray ( ) ) ;
102
101
}
103
102
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" ) ]
105
104
public async Task DownloadAction_DoesNotGracefullyDisconnect_TheCurrentCircuit ( )
106
105
{
107
106
// Arrange & Act
@@ -114,7 +113,7 @@ public async Task DownloadAction_DoesNotGracefullyDisconnect_TheCurrentCircuit()
114
113
Assert . DoesNotContain ( ( Extensions . Logging . LogLevel . Debug , "CircuitDisconnectedPermanently" ) , Messages . ToArray ( ) ) ;
115
114
}
116
115
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" ) ]
118
117
public async Task DownloadHref_DoesNotGracefullyDisconnect_TheCurrentCircuit ( )
119
118
{
120
119
// Arrange & Act
0 commit comments