Skip to content
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 @@ -100,9 +100,17 @@ public ServerVirtualizationTest(BrowserFixture browserFixture, ToggleExecutionMo
public override void CanRenderHtmlTable()
=> base.CanRenderHtmlTable();

[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/65852")]
[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/65962")]
public override void CanElevateEffectiveMaxItemCount_WhenOverscanExceedsMax()
=> base.CanElevateEffectiveMaxItemCount_WhenOverscanExceedsMax();

[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/66119")]
public override void NonZeroStartIndex_ScrollToMiddleThenMeasure()
=> base.NonZeroStartIndex_ScrollToMiddleThenMeasure();

[QuarantinedTest("https://github.com/dotnet/aspnetcore/issues/66120")]
public override void CancelsOutdatedRefreshes_Async()
=> base.CancelsOutdatedRefreshes_Async();
}

public class ServerDynamicComponentRenderingTest : DynamicComponentRenderingTest
Expand Down
4 changes: 2 additions & 2 deletions src/Components/test/E2ETest/Tests/VirtualizationTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ public void RerendersWhenItemSizeShrinks_Async()
}

[Fact]
public void CancelsOutdatedRefreshes_Async()
public virtual void CancelsOutdatedRefreshes_Async()
{
Browser.MountTestComponent<VirtualizationComponent>();
var cancellationCount = Browser.Exists(By.Id("cancellation-count"));
Expand Down Expand Up @@ -1597,7 +1597,7 @@ public void ProgrammaticScrollToBottom_ReachesLastItems()
}

[Fact]
public void NonZeroStartIndex_ScrollToMiddleThenMeasure()
public virtual void NonZeroStartIndex_ScrollToMiddleThenMeasure()
{
Browser.MountTestComponent<VirtualizationScrollBehavior>();

Expand Down
Loading