Quarantine Blazor-Ignitor based tests (#19667)
This commit is contained in:
parent
a0175a2357
commit
72bb72f11c
|
|
@ -4,11 +4,11 @@
|
||||||
using System;
|
using System;
|
||||||
using System.Text.Json;
|
using System.Text.Json;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Microsoft.AspNetCore.Components.E2ETest;
|
|
||||||
using Microsoft.AspNetCore.Components.E2ETest.Infrastructure.ServerFixtures;
|
using Microsoft.AspNetCore.Components.E2ETest.Infrastructure.ServerFixtures;
|
||||||
using Microsoft.AspNetCore.Components.RenderTree;
|
using Microsoft.AspNetCore.Components.RenderTree;
|
||||||
using Microsoft.AspNetCore.Components.Web;
|
using Microsoft.AspNetCore.Components.Web;
|
||||||
using Microsoft.AspNetCore.SignalR.Client;
|
using Microsoft.AspNetCore.SignalR.Client;
|
||||||
|
using Microsoft.AspNetCore.Testing;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
using TestServer;
|
using TestServer;
|
||||||
using Xunit;
|
using Xunit;
|
||||||
|
|
@ -16,6 +16,7 @@ using Xunit.Abstractions;
|
||||||
|
|
||||||
namespace Microsoft.AspNetCore.Components.E2ETest.ServerExecutionTests
|
namespace Microsoft.AspNetCore.Components.E2ETest.ServerExecutionTests
|
||||||
{
|
{
|
||||||
|
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/19666")]
|
||||||
public class ComponentHubInvalidEventTest : IgnitorTest<ServerStartup>
|
public class ComponentHubInvalidEventTest : IgnitorTest<ServerStartup>
|
||||||
{
|
{
|
||||||
public ComponentHubInvalidEventTest(BasicTestAppServerSiteFixture<ServerStartup> serverFixture, ITestOutputHelper output)
|
public ComponentHubInvalidEventTest(BasicTestAppServerSiteFixture<ServerStartup> serverFixture, ITestOutputHelper output)
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,7 @@ using Xunit.Abstractions;
|
||||||
|
|
||||||
namespace Microsoft.AspNetCore.Components.E2ETest.ServerExecutionTests
|
namespace Microsoft.AspNetCore.Components.E2ETest.ServerExecutionTests
|
||||||
{
|
{
|
||||||
|
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/19666")]
|
||||||
public class ComponentHubReliabilityTest : IgnitorTest<ServerStartup>
|
public class ComponentHubReliabilityTest : IgnitorTest<ServerStartup>
|
||||||
{
|
{
|
||||||
public ComponentHubReliabilityTest(BasicTestAppServerSiteFixture<ServerStartup> serverFixture, ITestOutputHelper output)
|
public ComponentHubReliabilityTest(BasicTestAppServerSiteFixture<ServerStartup> serverFixture, ITestOutputHelper output)
|
||||||
|
|
|
||||||
|
|
@ -19,6 +19,7 @@ using Xunit.Abstractions;
|
||||||
|
|
||||||
namespace Microsoft.AspNetCore.Components.E2ETest.ServerExecutionTests
|
namespace Microsoft.AspNetCore.Components.E2ETest.ServerExecutionTests
|
||||||
{
|
{
|
||||||
|
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/19666")]
|
||||||
public class InteropReliabilityTests : IgnitorTest<ServerStartup>
|
public class InteropReliabilityTests : IgnitorTest<ServerStartup>
|
||||||
{
|
{
|
||||||
public InteropReliabilityTests(BasicTestAppServerSiteFixture<ServerStartup> serverFixture, ITestOutputHelper output)
|
public InteropReliabilityTests(BasicTestAppServerSiteFixture<ServerStartup> serverFixture, ITestOutputHelper output)
|
||||||
|
|
|
||||||
|
|
@ -6,6 +6,7 @@ using System.Linq;
|
||||||
using System.Threading.Tasks;
|
using System.Threading.Tasks;
|
||||||
using Ignitor;
|
using Ignitor;
|
||||||
using Microsoft.AspNetCore.Components.E2ETest.Infrastructure.ServerFixtures;
|
using Microsoft.AspNetCore.Components.E2ETest.Infrastructure.ServerFixtures;
|
||||||
|
using Microsoft.AspNetCore.Testing;
|
||||||
using Microsoft.Extensions.Logging;
|
using Microsoft.Extensions.Logging;
|
||||||
using TestServer;
|
using TestServer;
|
||||||
using Xunit;
|
using Xunit;
|
||||||
|
|
@ -13,6 +14,7 @@ using Xunit.Abstractions;
|
||||||
|
|
||||||
namespace Microsoft.AspNetCore.Components.E2ETest.ServerExecutionTests
|
namespace Microsoft.AspNetCore.Components.E2ETest.ServerExecutionTests
|
||||||
{
|
{
|
||||||
|
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/19666")]
|
||||||
public class RemoteRendererBufferLimitTest : IgnitorTest<ServerStartup>
|
public class RemoteRendererBufferLimitTest : IgnitorTest<ServerStartup>
|
||||||
{
|
{
|
||||||
public RemoteRendererBufferLimitTest(BasicTestAppServerSiteFixture<ServerStartup> serverFixture, ITestOutputHelper output)
|
public RemoteRendererBufferLimitTest(BasicTestAppServerSiteFixture<ServerStartup> serverFixture, ITestOutputHelper output)
|
||||||
|
|
@ -31,7 +33,7 @@ namespace Microsoft.AspNetCore.Components.E2ETest.ServerExecutionTests
|
||||||
await Client.SelectAsync("test-selector-select", "BasicTestApp.LimitCounterComponent");
|
await Client.SelectAsync("test-selector-select", "BasicTestApp.LimitCounterComponent");
|
||||||
Client.ConfirmRenderBatch = false;
|
Client.ConfirmRenderBatch = false;
|
||||||
|
|
||||||
for (int i = 0; i < 10; i++)
|
for (var i = 0; i < 10; i++)
|
||||||
{
|
{
|
||||||
await Client.ClickAsync("increment");
|
await Client.ClickAsync("increment");
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue