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 db99e09 commit baf4a67Copy full SHA for baf4a67
test/UnitTest/Components/RowTest.cs
@@ -14,9 +14,14 @@ public void RowType_Normal()
14
{
15
pb.Add(a => a.RowType, RowType.Normal);
16
pb.Add(a => a.ChildContent, CreateContent());
17
+ pb.Add(a => a.AdditionalAttributes, new Dictionary<string, object>()
18
+ {
19
+ { "class", "test-row" }
20
+ });
21
});
22
23
Assert.Contains("data-bb-type=\"row\"", cut.Markup);
24
+ Assert.Contains("class=\"d-none test-row\"", cut.Markup);
25
}
26
27
[Fact]
0 commit comments