diff --git a/src/Components/test/E2ETest/ServerExecutionTests/ServerEventTest.cs b/src/Components/test/E2ETest/ServerExecutionTests/ServerEventTest.cs index 25dc2dc71f1f..ee74f4a60efd 100644 --- a/src/Components/test/E2ETest/ServerExecutionTests/ServerEventTest.cs +++ b/src/Components/test/E2ETest/ServerExecutionTests/ServerEventTest.cs @@ -19,7 +19,7 @@ public ServerEventTest(BrowserFixture browserFixture, ToggleExecutionModeServerF } [Fact] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/24688")] + [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/31195")] public override void EventDuringBatchRendering_CanTriggerDOMEvents() { base.EventDuringBatchRendering_CanTriggerDOMEvents(); diff --git a/src/Components/test/E2ETest/ServerExecutionTests/ServerGlobalizationTest.cs b/src/Components/test/E2ETest/ServerExecutionTests/ServerGlobalizationTest.cs index 7fdfd0364107..0dae5ec04342 100644 --- a/src/Components/test/E2ETest/ServerExecutionTests/ServerGlobalizationTest.cs +++ b/src/Components/test/E2ETest/ServerExecutionTests/ServerGlobalizationTest.cs @@ -35,7 +35,6 @@ protected override void InitializeAsyncCore() } [Theory] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/27556")] [InlineData("en-US")] [InlineData("fr-FR")] public override void CanSetCultureAndParseCultureSensitiveNumbersAndDates(string culture) diff --git a/src/Components/test/E2ETest/Tests/ComponentRenderingTest.cs b/src/Components/test/E2ETest/Tests/ComponentRenderingTest.cs index 9488b31f2a6e..444bcf12280a 100644 --- a/src/Components/test/E2ETest/Tests/ComponentRenderingTest.cs +++ b/src/Components/test/E2ETest/Tests/ComponentRenderingTest.cs @@ -42,7 +42,6 @@ public void BasicTestAppCanBeServed() } [Fact] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23366")] public void CanRenderTextOnlyComponent() { var appElement = Browser.MountTestComponent(); diff --git a/src/Components/test/E2ETest/Tests/EventBubblingTest.cs b/src/Components/test/E2ETest/Tests/EventBubblingTest.cs index 194775c59941..7c9d6465765c 100644 --- a/src/Components/test/E2ETest/Tests/EventBubblingTest.cs +++ b/src/Components/test/E2ETest/Tests/EventBubblingTest.cs @@ -48,7 +48,7 @@ public void BubblingStandardEvent_FiredOnElementWithHandler() } [Fact] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23366")] + [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/31195")] public void BubblingStandardEvent_FiredOnElementWithoutHandler() { Browser.Exists(By.Id("button-without-onclick")).Click(); diff --git a/src/Components/test/E2ETest/Tests/EventTest.cs b/src/Components/test/E2ETest/Tests/EventTest.cs index 13e68a1bcf59..9cbaea5c6fb1 100644 --- a/src/Components/test/E2ETest/Tests/EventTest.cs +++ b/src/Components/test/E2ETest/Tests/EventTest.cs @@ -176,7 +176,7 @@ public void PreventDefault_AppliesToFormOnSubmitHandlers() } [Fact] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/25929")] + [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/31195")] public void PreventDefault_DotNotApplyByDefault() { var appElement = Browser.MountTestComponent(); @@ -185,7 +185,7 @@ public void PreventDefault_DotNotApplyByDefault() } [Fact] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/27397")] + [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/31195")] public void InputEvent_RespondsOnKeystrokes() { Browser.MountTestComponent(); @@ -203,7 +203,7 @@ public void InputEvent_RespondsOnKeystrokes() } [Fact] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23757")] + [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/31195")] public void InputEvent_RespondsOnKeystrokes_EvenIfUpdatesAreLaggy() { // This test doesn't mean much on WebAssembly - it just shows that even if the CPU is locked diff --git a/src/Components/test/E2ETest/Tests/FormsTest.cs b/src/Components/test/E2ETest/Tests/FormsTest.cs index e53a2d5d5b15..b7a799f69b41 100644 --- a/src/Components/test/E2ETest/Tests/FormsTest.cs +++ b/src/Components/test/E2ETest/Tests/FormsTest.cs @@ -195,7 +195,6 @@ public void InputTextAreaInteractsWithEditContext() } [Fact] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/27398")] public void InputDateInteractsWithEditContext_NonNullableDateTime() { var appElement = MountTypicalValidationComponent(); @@ -304,7 +303,6 @@ public void InputCheckboxInteractsWithEditContext() } [Fact] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/24850")] public void InputRadioGroupWithoutNameInteractsWithEditContext() { var appElement = MountTypicalValidationComponent(); @@ -344,7 +342,6 @@ IWebElement FindBestAirlineInput() } [Fact] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/24850")] public void InputRadioGroupsWithNamesNestedInteractWithEditContext() { var appElement = MountTypicalValidationComponent(); diff --git a/src/Components/test/E2ETest/Tests/GlobalizationTest.cs b/src/Components/test/E2ETest/Tests/GlobalizationTest.cs index 8461f22742b3..9d1244036bc3 100644 --- a/src/Components/test/E2ETest/Tests/GlobalizationTest.cs +++ b/src/Components/test/E2ETest/Tests/GlobalizationTest.cs @@ -89,7 +89,6 @@ public virtual void CanSetCultureAndParseCultureSensitiveNumbersAndDates(string [Theory] [InlineData("en-US")] [InlineData("fr-FR")] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/27155")] public void CanSetCultureAndParseCultureInvariantNumbersAndDatesWithInputFields(string culture) { var cultureInfo = CultureInfo.GetCultureInfo(culture); diff --git a/src/Components/test/E2ETest/Tests/PerformanceTest.cs b/src/Components/test/E2ETest/Tests/PerformanceTest.cs index 876c034bebd5..bd05fbcde439 100644 --- a/src/Components/test/E2ETest/Tests/PerformanceTest.cs +++ b/src/Components/test/E2ETest/Tests/PerformanceTest.cs @@ -36,7 +36,6 @@ public void HasTitle() } [Fact] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23366")] public void BenchmarksRunWithoutError() { // In CI, we only verify that the benchmarks run without throwing any diff --git a/src/Components/test/E2ETest/Tests/RoutingTest.cs b/src/Components/test/E2ETest/Tests/RoutingTest.cs index 3757fcf30ec6..2e3118d1329a 100644 --- a/src/Components/test/E2ETest/Tests/RoutingTest.cs +++ b/src/Components/test/E2ETest/Tests/RoutingTest.cs @@ -508,12 +508,12 @@ public void ResetsScrollPositionWhenPerformingInternalNavigation_ProgrammaticNav } [Fact] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23596")] + [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/31195")] public void PreventDefault_CanBlockNavigation_ForInternalNavigation_PreventDefaultTarget() => PreventDefault_CanBlockNavigation("internal", "target"); [Fact] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23596")] + [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/31195")] public void PreventDefault_CanBlockNavigation_ForExternalNavigation_PreventDefaultAncestor() => PreventDefault_CanBlockNavigation("external", "ancestor"); diff --git a/src/Components/test/E2ETest/Tests/WebAssemblyLazyLoadTest.cs b/src/Components/test/E2ETest/Tests/WebAssemblyLazyLoadTest.cs index 4886e1f9ae26..4160843dc024 100644 --- a/src/Components/test/E2ETest/Tests/WebAssemblyLazyLoadTest.cs +++ b/src/Components/test/E2ETest/Tests/WebAssemblyLazyLoadTest.cs @@ -36,7 +36,6 @@ protected override void InitializeAsyncCore() } [Fact] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23856")] public void CanLazyLoadOnRouteChange() { // Navigate to a page without any lazy-loaded dependencies @@ -61,7 +60,6 @@ public void CanLazyLoadOnRouteChange() } [Fact] - [QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23856")] public void CanLazyLoadOnFirstVisit() { // Navigate to a page with lazy loaded assemblies for the first time