@@ -170,6 +170,7 @@ public async Task ConnectAsync_CookieHeaders_Success(Uri server)
170170
171171 [ OuterLoop ( "Uses external servers" , typeof ( PlatformDetection ) , nameof ( PlatformDetection . LocalEchoServerIsNotAvailable ) ) ]
172172 [ ConditionalTheory ( nameof ( WebSocketsSupported ) ) , MemberData ( nameof ( EchoServers ) ) ]
173+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/63681" , TestPlatforms . Browser ) ]
173174 public async Task ConnectAsync_PassNoSubProtocol_ServerRequires_ThrowsWebSocketException ( Uri server )
174175 {
175176 const string AcceptedProtocol = "CustomProtocol" ;
@@ -256,6 +257,7 @@ public async Task ConnectAndCloseAsync_UseProxyServer_ExpectedClosedState(Uri se
256257 }
257258
258259 [ ConditionalFact ( nameof ( WebSocketsSupported ) ) ]
260+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/63672" , TestPlatforms . Browser ) ]
259261 public async Task ConnectAsync_CancellationRequestedBeforeConnect_ThrowsOperationCanceledException ( )
260262 {
261263 using ( var clientSocket = new ClientWebSocket ( ) )
@@ -268,6 +270,7 @@ public async Task ConnectAsync_CancellationRequestedBeforeConnect_ThrowsOperatio
268270 }
269271
270272 [ ConditionalFact ( nameof ( WebSocketsSupported ) ) ]
273+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/63672" , TestPlatforms . Browser ) ]
271274 public async Task ConnectAsync_CancellationRequestedInflightConnect_ThrowsOperationCanceledException ( )
272275 {
273276 using ( var clientSocket = new ClientWebSocket ( ) )
@@ -281,6 +284,7 @@ public async Task ConnectAsync_CancellationRequestedInflightConnect_ThrowsOperat
281284
282285 [ ConditionalFact ( nameof ( WebSocketsSupported ) ) ]
283286 [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/34690" , TestPlatforms . Windows , TargetFrameworkMonikers . Netcoreapp , TestRuntimes . Mono ) ]
287+ [ ActiveIssue ( "https://github.com/dotnet/runtime/issues/63671" , TestPlatforms . Browser ) ]
284288 public async Task ConnectAsync_CancellationRequestedAfterConnect_ThrowsOperationCanceledException ( )
285289 {
286290 var releaseServer = new TaskCompletionSource ( TaskCreationOptions . RunContinuationsAsynchronously ) ;
0 commit comments