Skip to content

Commit b98b74a

Browse files
authored
Quarantining various tests (#25932)
1 parent 495d3b2 commit b98b74a

File tree

6 files changed

+9
-0
lines changed

6 files changed

+9
-0
lines changed

src/Components/test/E2ETest/Tests/EventTest.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@ public void PreventDefault_AppliesToFormOnSubmitHandlers()
177177
}
178178

179179
[Fact]
180+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/25929")]
180181
public void PreventDefault_DotNotApplyByDefault()
181182
{
182183
var appElement = Browser.MountTestComponent<EventPreventDefaultComponent>();

src/Components/test/E2ETest/Tests/InputFileTest.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
using BasicTestApp.FormsTest;
1010
using Microsoft.AspNetCore.Components.E2ETest.Infrastructure;
1111
using Microsoft.AspNetCore.Components.E2ETest.Infrastructure.ServerFixtures;
12+
using Microsoft.AspNetCore.Testing;
1213
using Microsoft.AspNetCore.E2ETesting;
1314
using OpenQA.Selenium;
1415
using OpenQA.Selenium.Support.Extensions;
@@ -128,6 +129,7 @@ public void CanUploadMultipleFiles()
128129
}
129130

130131
[Fact]
132+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/25929")]
131133
public void CanUploadAndConvertImageFile()
132134
{
133135
var sourceImageId = "image-source";

src/Components/test/E2ETest/Tests/VirtualizationTest.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -163,6 +163,7 @@ public void RerendersWhenItemSizeShrinks_Async()
163163
}
164164

165165
[Fact]
166+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/25929")]
166167
public void CancelsOutdatedRefreshes_Async()
167168
{
168169
var cancellationCount = Browser.FindElement(By.Id("cancellation-count"));

src/Components/test/E2ETest/Tests/WebAssemblyConfigurationHostedTest.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
using Microsoft.AspNetCore.Components.E2ETest.Infrastructure;
77
using Microsoft.AspNetCore.Components.E2ETest.Infrastructure.ServerFixtures;
88
using Microsoft.AspNetCore.E2ETesting;
9+
using Microsoft.AspNetCore.Testing;
910
using OpenQA.Selenium;
1011
using Xunit;
1112
using Xunit.Abstractions;
@@ -33,6 +34,7 @@ protected override void InitializeAsyncCore()
3334
}
3435

3536
[Fact]
37+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/25929")]
3638
public void WebAssemblyConfiguration_Works()
3739
{
3840
// Verify values from the default 'appsettings.json' are read.

src/Razor/Microsoft.NET.Sdk.Razor/integrationtests/MvcBuildIntegrationTestLegacy.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ public virtual async Task BuildingProject_CopyToOutputDirectoryFiles()
7474
}
7575

7676
[Fact]
77+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/25931")]
7778
public virtual async Task Publish_Project()
7879
{
7980
using (CreateTestProject())

src/SignalR/clients/java/signalr/test/src/main/java/com/microsoft/signalr/HubConnectionTest.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@
1717
import java.util.concurrent.atomic.AtomicReference;
1818

1919
import org.junit.jupiter.api.Test;
20+
import org.junit.jupiter.api.Disabled;
2021

2122
import ch.qos.logback.classic.spi.ILoggingEvent;
2223
import io.reactivex.Completable;
@@ -3197,6 +3198,7 @@ public void stopWithoutObservingWithLongPollingTransportStops() {
31973198
assertEquals(HubConnectionState.DISCONNECTED, hubConnection.getConnectionState());
31983199
}
31993200

3201+
@Disabled
32003202
@Test
32013203
public void hubConnectionClosesAndRunsOnClosedCallbackAfterCloseMessageWithLongPolling() {
32023204
AtomicInteger requestCount = new AtomicInteger(0);

0 commit comments

Comments
 (0)