Skip to content

Requarantine component tests #29652

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jan 27, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ public ServerEventTest(BrowserFixture browserFixture, ToggleExecutionModeServerF
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/24688")]
public override void EventDuringBatchRendering_CanTriggerDOMEvents()
{
base.EventDuringBatchRendering_CanTriggerDOMEvents();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ protected override void InitializeAsyncCore()
}

[Theory]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/27155")]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/27556")]
[InlineData("en-US")]
[InlineData("fr-FR")]
public override void CanSetCultureAndParseCultureSensitiveNumbersAndDates(string culture)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,7 @@ protected override void InitializeAsyncCore()
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23366")]
public void CanSendAndReceiveBytes()
{
IssueRequest("/subdir/api/data");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ public void BasicTestAppCanBeServed()
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23366")]
public void CanRenderTextOnlyComponent()
{
var appElement = Browser.MountTestComponent<TextOnlyComponent>();
Expand Down
1 change: 1 addition & 0 deletions src/Components/test/E2ETest/Tests/EventBubblingTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ public void BubblingStandardEvent_FiredOnElementWithHandler()
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23366")]
public void BubblingStandardEvent_FiredOnElementWithoutHandler()
{
Browser.Exists(By.Id("button-without-onclick")).Click();
Expand Down
2 changes: 2 additions & 0 deletions src/Components/test/E2ETest/Tests/EventTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ public void PreventDefault_AppliesToFormOnSubmitHandlers()
}

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

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/23757")]
public void InputEvent_RespondsOnKeystrokes_EvenIfUpdatesAreLaggy()
{
// This test doesn't mean much on WebAssembly - it just shows that even if the CPU is locked
Expand Down
3 changes: 3 additions & 0 deletions src/Components/test/E2ETest/Tests/FormsTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ public void InputTextAreaInteractsWithEditContext()
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/27398")]
public void InputDateInteractsWithEditContext_NonNullableDateTime()
{
var appElement = MountTypicalValidationComponent();
Expand Down Expand Up @@ -303,6 +304,7 @@ public void InputCheckboxInteractsWithEditContext()
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/24850")]
public void InputRadioGroupWithoutNameInteractsWithEditContext()
{
var appElement = MountTypicalValidationComponent();
Expand Down Expand Up @@ -342,6 +344,7 @@ IWebElement FindBestAirlineInput()
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/24850")]
public void InputRadioGroupsWithNamesNestedInteractWithEditContext()
{
var appElement = MountTypicalValidationComponent();
Expand Down
2 changes: 2 additions & 0 deletions src/Components/test/E2ETest/Tests/InputFileTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ public void CanUploadSingleSmallFile()
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/26331")]
public void CanUploadSingleLargeFile()
{
// Create a large text file
Expand Down Expand Up @@ -130,6 +131,7 @@ public void CanUploadMultipleFiles()
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/25929")]
public void CanUploadAndConvertImageFile()
{
var sourceImageId = "image-source";
Expand Down
1 change: 1 addition & 0 deletions src/Components/test/E2ETest/Tests/PerformanceTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ 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
Expand Down
1 change: 1 addition & 0 deletions src/Components/test/E2ETest/Tests/VirtualizationTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,7 @@ public void CancelsOutdatedRefreshes_Async()
}

[Fact]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/24922")]
public void CanUseViewportAsContainer()
{
Browser.MountTestComponent<VirtualizationComponent>();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ 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
Expand All @@ -60,6 +61,7 @@ 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
Expand Down