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 f1f5097 commit ba6ca0dCopy full SHA for ba6ca0d
1 file changed
test/UnitTest/Components/FlipClockTest.cs
@@ -46,6 +46,19 @@ public void ShowSecond_Ok()
46
cut.DoesNotContain("bb-flip-clock-list second");
47
}
48
49
+ [Fact]
50
+ public void ShowDay_Ok()
51
+ {
52
+ var cut = Context.RenderComponent<FlipClock>();
53
+ cut.DoesNotContain("bb-flip-clock-list day");
54
+
55
+ cut.SetParametersAndRender(pb =>
56
57
+ pb.Add(a => a.ShowDay, true);
58
+ });
59
+ cut.Contains("bb-flip-clock-list day");
60
+ }
61
62
[Fact]
63
public async Task ViewMode_Ok()
64
{
0 commit comments