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 9ff9e9e commit 2b7bd33Copy full SHA for 2b7bd33
test/UnitTest/Components/PopConfirmButtonTest.cs
@@ -29,6 +29,7 @@ public async Task Show_Ok()
29
30
cut.Contains("fa-solid fa-xmark");
31
cut.Contains("fa-solid fa-check");
32
+ cut.DoesNotContain("data-bb-close=\"true\"");
33
34
// Show
35
var button = cut.Find("div");
@@ -84,6 +85,7 @@ await cut.InvokeAsync(() =>
84
85
return Task.FromResult(true);
86
});
87
88
+ cut.Contains("data-bb-close=\"true\"");
89
// 默认设置增加 shadow 样式
90
Assert.Contains("data-bs-custom-class=\"test-custom-class shadow\"", cut.Markup);
91
0 commit comments