Skip to content
Closed
Changes from 2 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
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
using Microsoft.AspNetCore.Components.E2ETest.Infrastructure;
using Microsoft.AspNetCore.Components.E2ETest.Infrastructure.ServerFixtures;
using Microsoft.AspNetCore.E2ETesting;
using Microsoft.AspNetCore.Testing;
using OpenQA.Selenium;
using TestServer;
using Xunit;
Expand All @@ -26,6 +27,7 @@ public ServerTransportsTest(
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35481")]
public void DefaultTransportsWorksWithWebSockets()
{
Navigate("/defaultTransport/Transports");
Expand All @@ -44,6 +46,7 @@ public void DefaultTransportsWorksWithWebSockets()
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35481")]
public void ErrorIfClientAttemptsLongPollingWithServerOnWebSockets()
{
Navigate("/defaultTransport/Transports");
Expand All @@ -65,6 +68,7 @@ public void ErrorIfClientAttemptsLongPollingWithServerOnWebSockets()
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35481")]
public void ErrorIfWebSocketsConnectionIsRejected()
{
Navigate("/defaultTransport/Transports");
Expand All @@ -89,6 +93,7 @@ public void ErrorIfWebSocketsConnectionIsRejected()
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/35481")]
public void ErrorIfClientAttemptsWebSocketsWithServerOnLongPolling()
{
Navigate("/longPolling/Transports");
Expand Down