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 7f07b93 commit b9ca1f6Copy full SHA for b9ca1f6
test/UnitTest/Components/LayoutTest.cs
@@ -246,12 +246,16 @@ public void ShowLayouSidebar_Ok()
246
pb.Add(a => a.AdditionalAssemblies, new Assembly[] { GetType().Assembly });
247
pb.Add(a => a.IsFullSide, true);
248
pb.Add(a => a.ShowSplitbar, true);
249
+ pb.Add(a => a.SidebarMinWidth, 100);
250
+ pb.Add(a => a.SidebarMaxWidth, 300);
251
pb.Add(a => a.Side, new RenderFragment(builder =>
252
{
253
builder.AddContent(0, "test");
254
}));
255
});
256
cut.Contains("layout-splitebar");
257
+ cut.Contains("data-bb-min=\"100\"");
258
+ cut.Contains("data-bb-max=\"300\"");
259
}
260
261
[Fact]
0 commit comments