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 f2996ab commit 5f2323cCopy full SHA for 5f2323c
test/UnitTest/Services/DrawerServiceTest.cs
@@ -25,12 +25,14 @@ public async Task Show_Ok()
25
ShowBackdrop = true,
26
BodyContext = "test-body-context",
27
IsKeyboard = true,
28
- BodyScroll = true
+ BodyScroll = true,
29
+ ZIndex = 1066
30
};
31
var service = Context.Services.GetRequiredService<DrawerService>();
32
var cut = Context.RenderComponent<BootstrapBlazorRoot>();
33
await service.Show(option);
34
cut.Contains("data-bb-keyboard=\"true\"");
35
+ cut.Contains("--bb-drawer-zindex: 1066;");
36
var button = cut.Find("button");
37
await cut.InvokeAsync(() => button.Click());
38
0 commit comments