Skip to content

Commit 4504ce5

Browse files
authored
Remove quarantine attributes from Blazor e2e tests (#37890)
Removing quarantine attribute from tests in the aspnetcore-components-e2e pipeline with 100% success rates over the lifetime of the pipeline. This is primarily a cleanup activity as these tests are not run as part of the regular test pipeline and unquarantining does not change the outcome of the build. Fixes #23015 Fixes #31195 Fixes #34886 Fixes #34395 Fixes #33297 Fixes #33528 Fixes #32907 Fixes #34867 Fixes #33530 Fixes #33715 Fixes #34183 Fixes #33454
1 parent 197a3d1 commit 4504ce5

13 files changed

+0
-20
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,6 @@ public async Task ClosingTheBrowserWindow_GracefullyDisconnects_TheCurrentCircui
7979
}
8080

8181
[Fact]
82-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23015")]
8382
public async Task ClosingTheBrowserWindow_GracefullyDisconnects_WhenNavigatingAwayFromThePage()
8483
{
8584
// Arrange & Act

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

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

2121
[Fact]
22-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/31195")]
2322
public override void EventDuringBatchRendering_CanTriggerDOMEvents()
2423
{
2524
base.EventDuringBatchRendering_CanTriggerDOMEvents();

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ protected override void InitializeAsyncCore()
4646
public override Task InitializeAsync() => base.InitializeAsync(Guid.NewGuid().ToString());
4747

4848
[Fact]
49-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/33454")]
5049
public void CanSendAndReceiveBytes()
5150
{
5251
IssueRequest("/subdir/api/data");

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -611,7 +611,6 @@ public void CanBindTextboxNullableDecimal()
611611
// This tests what happens you put invalid (unconvertable) input in. This is separate from the
612612
// other tests because it requires type="text" - the other tests use type="number"
613613
[Fact]
614-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/34183")]
615614
public void CanBindTextbox_Decimal_InvalidInput()
616615
{
617616
var target = Browser.Exists(By.Id("textbox-decimal-invalid"));

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ protected override void InitializeAsyncCore()
3030
}
3131

3232
[Fact]
33-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/33715")]
3433
public void CanUpdateValuesMatchedByType()
3534
{
3635
var currentCount = Browser.Exists(By.Id("current-count"));
@@ -50,7 +49,6 @@ public void CanUpdateValuesMatchedByType()
5049
}
5150

5251
[Fact]
53-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/33530")]
5452
public void CanUpdateValuesMatchedByName()
5553
{
5654
var currentFlag1Value = Browser.Exists(By.Id("flag-1"));
@@ -72,7 +70,6 @@ public void CanUpdateValuesMatchedByName()
7270
}
7371

7472
[Fact]
75-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/34867")]
7673
public void CanUpdateFixedValuesMatchedByInterface()
7774
{
7875
var currentCount = Browser.Exists(By.Id("current-count"));

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,6 @@ public void CanUseFocusExtensionToFocusElementPreventScroll()
467467
}
468468

469469
[Theory]
470-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/32907")]
471470
[InlineData("focus-button-onafterrender-invoke")]
472471
[InlineData("focus-button-onafterrender-await")]
473472
public void CanFocusDuringOnAfterRenderAsyncWithFocusInEvent(string triggerButton)

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,6 @@ public async Task CanHandleErrorsAfterDisposingErrorBoundary()
147147
}
148148

149149
[Fact]
150-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/33528")]
151150
public void CanHandleMultipleAsyncErrorsFromDescendants()
152151
{
153152
var container = Browser.Exists(By.Id("multiple-child-errors-test"));

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

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

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

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

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,6 @@ public void PreventDefault_AppliesToFormOnSubmitHandlers()
203203
}
204204

205205
[Fact]
206-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/31195")]
207206
public void PreventDefault_DotNotApplyByDefault()
208207
{
209208
var appElement = Browser.MountTestComponent<EventPreventDefaultComponent>();
@@ -212,7 +211,6 @@ public void PreventDefault_DotNotApplyByDefault()
212211
}
213212

214213
[Fact]
215-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/31195")]
216214
public void InputEvent_RespondsOnKeystrokes()
217215
{
218216
Browser.MountTestComponent<InputEventComponent>();
@@ -230,7 +228,6 @@ public void InputEvent_RespondsOnKeystrokes()
230228
}
231229

232230
[Fact]
233-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/31195")]
234231
public void InputEvent_RespondsOnKeystrokes_EvenIfUpdatesAreLaggy()
235232
{
236233
// This test doesn't mean much on WebAssembly - it just shows that even if the CPU is locked

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ private static string NormalizeWhitespace(string value)
9797
[Theory]
9898
[InlineData("en-US")]
9999
[InlineData("fr-FR")]
100-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/33297")]
101100
public void CanSetCultureAndParseCultureInvariantNumbersAndDatesWithInputFields(string culture)
102101
{
103102
var cultureInfo = CultureInfo.GetCultureInfo(culture);

0 commit comments

Comments
 (0)