We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b02a373 commit 5df3396Copy full SHA for 5df3396
1 file changed
test/UnitTest/Components/TableTest.cs
@@ -792,6 +792,13 @@ public void PageItems_Ok()
792
793
var table = cut.FindComponent<Table<Foo>>();
794
Assert.Equal(20, table.Instance.PageItems);
795
+
796
+ // change page items
797
+ var select = cut.FindAll(".table-page-info .select .dropdown-item");
798
+ Assert.Equal(6, select.Count);
799
800
+ var item = select.ElementAt(1);
801
+ cut.InvokeAsync(() => item.Click());
802
}
803
804
[Fact]
0 commit comments