Skip to content

Commit 3f7b205

Browse files
Unquarantine passed and fixed tests (#29438)
1 parent 4423200 commit 3f7b205

File tree

18 files changed

+1
-23
lines changed

18 files changed

+1
-23
lines changed

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/24688")]
2322
public override void EventDuringBatchRendering_CanTriggerDOMEvents()
2423
{
2524
base.EventDuringBatchRendering_CanTriggerDOMEvents();

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

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

3737
[Theory]
38-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/27556")]
38+
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/27155")]
3939
[InlineData("en-US")]
4040
[InlineData("fr-FR")]
4141
public override void CanSetCultureAndParseCultureSensitiveNumbersAndDates(string culture)

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

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

4545
[Fact]
46-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23366")]
4746
public void CanSendAndReceiveBytes()
4847
{
4948
IssueRequest("/subdir/api/data");

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: 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/23366")]
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 & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -177,7 +177,6 @@ public void PreventDefault_AppliesToFormOnSubmitHandlers()
177177
}
178178

179179
[Fact]
180-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/25929")]
181180
public void PreventDefault_DotNotApplyByDefault()
182181
{
183182
var appElement = Browser.MountTestComponent<EventPreventDefaultComponent>();
@@ -204,7 +203,6 @@ public void InputEvent_RespondsOnKeystrokes()
204203
}
205204

206205
[Fact]
207-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23757")]
208206
public void InputEvent_RespondsOnKeystrokes_EvenIfUpdatesAreLaggy()
209207
{
210208
// 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/InputFileTest.cs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,6 @@ public void CanUploadSingleSmallFile()
6666
}
6767

6868
[Fact]
69-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/26331")]
7069
public void CanUploadSingleLargeFile()
7170
{
7271
// Create a large text file
@@ -131,7 +130,6 @@ public void CanUploadMultipleFiles()
131130
}
132131

133132
[Fact]
134-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/25929")]
135133
public void CanUploadAndConvertImageFile()
136134
{
137135
var sourceImageId = "image-source";

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

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

3535
[Fact]
36-
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/26288")]
3736
public void CanInvokeDotNetMethods()
3837
{
3938
// Arrange

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

0 commit comments

Comments
 (0)