Skip to content

Commit 72bb72f

Browse files
authored
Quarantine Blazor-Ignitor based tests (#19667)
1 parent a0175a2 commit 72bb72f

File tree

4 files changed

+7
-2
lines changed

4 files changed

+7
-2
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,18 +4,19 @@
44
using System;
55
using System.Text.Json;
66
using System.Threading.Tasks;
7-
using Microsoft.AspNetCore.Components.E2ETest;
87
using Microsoft.AspNetCore.Components.E2ETest.Infrastructure.ServerFixtures;
98
using Microsoft.AspNetCore.Components.RenderTree;
109
using Microsoft.AspNetCore.Components.Web;
1110
using Microsoft.AspNetCore.SignalR.Client;
11+
using Microsoft.AspNetCore.Testing;
1212
using Microsoft.Extensions.Logging;
1313
using TestServer;
1414
using Xunit;
1515
using Xunit.Abstractions;
1616

1717
namespace Microsoft.AspNetCore.Components.E2ETest.ServerExecutionTests
1818
{
19+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/19666")]
1920
public class ComponentHubInvalidEventTest : IgnitorTest<ServerStartup>
2021
{
2122
public ComponentHubInvalidEventTest(BasicTestAppServerSiteFixture<ServerStartup> serverFixture, ITestOutputHelper output)

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414

1515
namespace Microsoft.AspNetCore.Components.E2ETest.ServerExecutionTests
1616
{
17+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/19666")]
1718
public class ComponentHubReliabilityTest : IgnitorTest<ServerStartup>
1819
{
1920
public ComponentHubReliabilityTest(BasicTestAppServerSiteFixture<ServerStartup> serverFixture, ITestOutputHelper output)

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919

2020
namespace Microsoft.AspNetCore.Components.E2ETest.ServerExecutionTests
2121
{
22+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/19666")]
2223
public class InteropReliabilityTests : IgnitorTest<ServerStartup>
2324
{
2425
public InteropReliabilityTests(BasicTestAppServerSiteFixture<ServerStartup> serverFixture, ITestOutputHelper output)

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

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,13 +6,15 @@
66
using System.Threading.Tasks;
77
using Ignitor;
88
using Microsoft.AspNetCore.Components.E2ETest.Infrastructure.ServerFixtures;
9+
using Microsoft.AspNetCore.Testing;
910
using Microsoft.Extensions.Logging;
1011
using TestServer;
1112
using Xunit;
1213
using Xunit.Abstractions;
1314

1415
namespace Microsoft.AspNetCore.Components.E2ETest.ServerExecutionTests
1516
{
17+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/19666")]
1618
public class RemoteRendererBufferLimitTest : IgnitorTest<ServerStartup>
1719
{
1820
public RemoteRendererBufferLimitTest(BasicTestAppServerSiteFixture<ServerStartup> serverFixture, ITestOutputHelper output)
@@ -31,7 +33,7 @@ public async Task DispatchedEventsWillKeepBeingProcessed_ButUpdatedWillBeDelayed
3133
await Client.SelectAsync("test-selector-select", "BasicTestApp.LimitCounterComponent");
3234
Client.ConfirmRenderBatch = false;
3335

34-
for (int i = 0; i < 10; i++)
36+
for (var i = 0; i < 10; i++)
3537
{
3638
await Client.ClickAsync("increment");
3739
}

0 commit comments

Comments
 (0)