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 a1fa8b0 commit 92111c6Copy full SHA for 92111c6
test/UnitTest/Services/DrawerServiceTest.cs
@@ -30,11 +30,18 @@ public async Task Show_Ok()
30
var button = cut.Find("button");
31
await cut.InvokeAsync(() => button.Click());
32
33
+ option.ChildContent = null;
34
+ option.Component = BootstrapDynamicComponent.CreateComponent<DialogCloseButton>();
35
+ await service.Show(option);
36
+ button = cut.Find("button");
37
+ await cut.InvokeAsync(() => button.Click());
38
+
39
await service.Show<DrawerDemo>();
40
button = cut.Find("button");
41
42
- await service.Show(typeof(DrawerDemo));
43
+ var type = typeof(DrawerDemo);
44
+ await service.Show(type);
45
46
47
}
0 commit comments