Skip to content

Commit 2c2df08

Browse files
authored
Components test parole for good behavior (#31156)
1 parent 1bf6332 commit 2c2df08

File tree

10 files changed

+7
-16
lines changed

10 files changed

+7
-16
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ public ServerEventTest(BrowserFixture browserFixture, ToggleExecutionModeServerF
1919
}
2020

2121
[Fact]
22-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/24688")]
22+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/31195")]
2323
public override void EventDuringBatchRendering_CanTriggerDOMEvents()
2424
{
2525
base.EventDuringBatchRendering_CanTriggerDOMEvents();

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ protected override void InitializeAsyncCore()
3535
}
3636

3737
[Theory]
38-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/27556")]
3938
[InlineData("en-US")]
4039
[InlineData("fr-FR")]
4140
public override void CanSetCultureAndParseCultureSensitiveNumbersAndDates(string culture)

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ public void BasicTestAppCanBeServed()
4242
}
4343

4444
[Fact]
45-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23366")]
4645
public void CanRenderTextOnlyComponent()
4746
{
4847
var appElement = Browser.MountTestComponent<TextOnlyComponent>();

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public void BubblingStandardEvent_FiredOnElementWithHandler()
4848
}
4949

5050
[Fact]
51-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23366")]
51+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/31195")]
5252
public void BubblingStandardEvent_FiredOnElementWithoutHandler()
5353
{
5454
Browser.Exists(By.Id("button-without-onclick")).Click();

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

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ public void PreventDefault_AppliesToFormOnSubmitHandlers()
176176
}
177177

178178
[Fact]
179-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/25929")]
179+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/31195")]
180180
public void PreventDefault_DotNotApplyByDefault()
181181
{
182182
var appElement = Browser.MountTestComponent<EventPreventDefaultComponent>();
@@ -185,7 +185,7 @@ public void PreventDefault_DotNotApplyByDefault()
185185
}
186186

187187
[Fact]
188-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/27397")]
188+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/31195")]
189189
public void InputEvent_RespondsOnKeystrokes()
190190
{
191191
Browser.MountTestComponent<InputEventComponent>();
@@ -203,7 +203,7 @@ public void InputEvent_RespondsOnKeystrokes()
203203
}
204204

205205
[Fact]
206-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23757")]
206+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/31195")]
207207
public void InputEvent_RespondsOnKeystrokes_EvenIfUpdatesAreLaggy()
208208
{
209209
// This test doesn't mean much on WebAssembly - it just shows that even if the CPU is locked

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,6 @@ public void InputTextAreaInteractsWithEditContext()
195195
}
196196

197197
[Fact]
198-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/27398")]
199198
public void InputDateInteractsWithEditContext_NonNullableDateTime()
200199
{
201200
var appElement = MountTypicalValidationComponent();
@@ -304,7 +303,6 @@ public void InputCheckboxInteractsWithEditContext()
304303
}
305304

306305
[Fact]
307-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/24850")]
308306
public void InputRadioGroupWithoutNameInteractsWithEditContext()
309307
{
310308
var appElement = MountTypicalValidationComponent();
@@ -344,7 +342,6 @@ IWebElement FindBestAirlineInput()
344342
}
345343

346344
[Fact]
347-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/24850")]
348345
public void InputRadioGroupsWithNamesNestedInteractWithEditContext()
349346
{
350347
var appElement = MountTypicalValidationComponent();

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ public virtual void CanSetCultureAndParseCultureSensitiveNumbersAndDates(string
8989
[Theory]
9090
[InlineData("en-US")]
9191
[InlineData("fr-FR")]
92-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/27155")]
9392
public void CanSetCultureAndParseCultureInvariantNumbersAndDatesWithInputFields(string culture)
9493
{
9594
var cultureInfo = CultureInfo.GetCultureInfo(culture);

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ public void HasTitle()
3636
}
3737

3838
[Fact]
39-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23366")]
4039
public void BenchmarksRunWithoutError()
4140
{
4241
// In CI, we only verify that the benchmarks run without throwing any

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -508,12 +508,12 @@ public void ResetsScrollPositionWhenPerformingInternalNavigation_ProgrammaticNav
508508
}
509509

510510
[Fact]
511-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23596")]
511+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/31195")]
512512
public void PreventDefault_CanBlockNavigation_ForInternalNavigation_PreventDefaultTarget()
513513
=> PreventDefault_CanBlockNavigation("internal", "target");
514514

515515
[Fact]
516-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23596")]
516+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/31195")]
517517
public void PreventDefault_CanBlockNavigation_ForExternalNavigation_PreventDefaultAncestor()
518518
=> PreventDefault_CanBlockNavigation("external", "ancestor");
519519

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

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ protected override void InitializeAsyncCore()
3636
}
3737

3838
[Fact]
39-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23856")]
4039
public void CanLazyLoadOnRouteChange()
4140
{
4241
// Navigate to a page without any lazy-loaded dependencies
@@ -61,7 +60,6 @@ public void CanLazyLoadOnRouteChange()
6160
}
6261

6362
[Fact]
64-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23856")]
6563
public void CanLazyLoadOnFirstVisit()
6664
{
6765
// Navigate to a page with lazy loaded assemblies for the first time

0 commit comments

Comments
 (0)