mirror of
https://github.com/VSadov/Satori.git
synced 2025-06-09 17:44:48 +09:00
[wasm] Replace active issue for browser platform with NodeJS only (#65505)
This commit is contained in:
parent
89e5469ac5
commit
d59bfff93e
2 changed files with 5 additions and 5 deletions
|
@ -17,7 +17,7 @@ namespace System.Net.WebSockets.Client.Tests
|
|||
|
||||
[OuterLoop("Uses external servers", typeof(PlatformDetection), nameof(PlatformDetection.LocalEchoServerIsNotAvailable))]
|
||||
[ConditionalTheory(nameof(WebSocketsSupported)), MemberData(nameof(EchoServers))]
|
||||
[ActiveIssue("https://github.com/dotnet/runtime/issues/63673", TestPlatforms.Browser)]
|
||||
[ActiveIssue("https://github.com/dotnet/runtime/issues/63673", typeof(PlatformDetection), nameof(PlatformDetection.IsNodeJS))]
|
||||
public async Task Abort_ConnectAndAbort_ThrowsWebSocketExceptionWithmessage(Uri server)
|
||||
{
|
||||
using (var cws = new ClientWebSocket())
|
||||
|
|
|
@ -170,7 +170,7 @@ namespace System.Net.WebSockets.Client.Tests
|
|||
|
||||
[OuterLoop("Uses external servers", typeof(PlatformDetection), nameof(PlatformDetection.LocalEchoServerIsNotAvailable))]
|
||||
[ConditionalTheory(nameof(WebSocketsSupported)), MemberData(nameof(EchoServers))]
|
||||
[ActiveIssue("https://github.com/dotnet/runtime/issues/63681", TestPlatforms.Browser)]
|
||||
[ActiveIssue("https://github.com/dotnet/runtime/issues/63681", typeof(PlatformDetection), nameof(PlatformDetection.IsNodeJS))]
|
||||
public async Task ConnectAsync_PassNoSubProtocol_ServerRequires_ThrowsWebSocketException(Uri server)
|
||||
{
|
||||
const string AcceptedProtocol = "CustomProtocol";
|
||||
|
@ -257,7 +257,7 @@ namespace System.Net.WebSockets.Client.Tests
|
|||
}
|
||||
|
||||
[ConditionalFact(nameof(WebSocketsSupported))]
|
||||
[ActiveIssue("https://github.com/dotnet/runtime/issues/63672", TestPlatforms.Browser)]
|
||||
[ActiveIssue("https://github.com/dotnet/runtime/issues/63672", typeof(PlatformDetection), nameof(PlatformDetection.IsNodeJS))]
|
||||
public async Task ConnectAsync_CancellationRequestedBeforeConnect_ThrowsOperationCanceledException()
|
||||
{
|
||||
using (var clientSocket = new ClientWebSocket())
|
||||
|
@ -270,7 +270,7 @@ namespace System.Net.WebSockets.Client.Tests
|
|||
}
|
||||
|
||||
[ConditionalFact(nameof(WebSocketsSupported))]
|
||||
[ActiveIssue("https://github.com/dotnet/runtime/issues/63672", TestPlatforms.Browser)]
|
||||
[ActiveIssue("https://github.com/dotnet/runtime/issues/63672", typeof(PlatformDetection), nameof(PlatformDetection.IsNodeJS))]
|
||||
public async Task ConnectAsync_CancellationRequestedInflightConnect_ThrowsOperationCanceledException()
|
||||
{
|
||||
using (var clientSocket = new ClientWebSocket())
|
||||
|
@ -284,7 +284,7 @@ namespace System.Net.WebSockets.Client.Tests
|
|||
|
||||
[ConditionalFact(nameof(WebSocketsSupported))]
|
||||
[ActiveIssue("https://github.com/dotnet/runtime/issues/34690", TestPlatforms.Windows, TargetFrameworkMonikers.Netcoreapp, TestRuntimes.Mono)]
|
||||
[ActiveIssue("https://github.com/dotnet/runtime/issues/63671", TestPlatforms.Browser)]
|
||||
[ActiveIssue("https://github.com/dotnet/runtime/issues/63671", typeof(PlatformDetection), nameof(PlatformDetection.IsNodeJS))]
|
||||
public async Task ConnectAsync_CancellationRequestedAfterConnect_ThrowsOperationCanceledException()
|
||||
{
|
||||
var releaseServer = new TaskCompletionSource(TaskCreationOptions.RunContinuationsAsynchronously);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue