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 5b6e6e7 commit fdf044aCopy full SHA for fdf044a
test/UnitTest/Components/CheckboxListTest.cs
@@ -27,6 +27,16 @@ public void Checkbox_Ok()
27
Assert.DoesNotContain("is-label", cut.Markup);
28
}
29
30
+ [Fact]
31
+ public void StopPropagation_Ok()
32
+ {
33
+ var cut = Context.RenderComponent<Checkbox<string>>(builder =>
34
35
+ builder.Add(a => a.StopPropagation, true);
36
+ });
37
+ Assert.Contains("data-bb-stop-propagation=\"true\"", cut.Markup);
38
+ }
39
+
40
[Fact]
41
public async Task SyncStateCallback_Ok()
42
{
0 commit comments