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 455d962 commit 53bd554Copy full SHA for 53bd554
test/UnitTest/Components/AutoCompleteTest.cs
@@ -33,6 +33,16 @@ public void Items_Ok()
33
Assert.Equal(2, menus.Count);
34
}
35
36
+ [Fact]
37
+ public void Debounce_Ok()
38
+ {
39
+ var cut = Context.RenderComponent<AutoComplete>();
40
+ Assert.DoesNotContain("data-bb-debounce", cut.Markup);
41
+
42
+ cut.SetParametersAndRender(pb => pb.Add(a => a.Debounce, 100));
43
+ cut.Contains("data-bb-debounce=\"100\"");
44
+ }
45
46
[Fact]
47
public async Task OnCustomFilter_Test()
48
{
0 commit comments