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 cbd50a8 commit 596a502Copy full SHA for 596a502
1 file changed
test/UnitTest/Components/ImageTest.cs
@@ -128,6 +128,7 @@ public void IsIntersectionObserver_Ok()
128
{
129
var cut = Context.RenderComponent<ImageViewer>(pb =>
130
131
+ pb.Add(a => a.ZoomSpeed, 0.5d);
132
pb.Add(a => a.Url, "https://www.blazor.zone/images/logo.png");
133
pb.Add(a => a.IsIntersectionObserver, true);
134
});
@@ -139,7 +140,6 @@ public void ImagerViewer_Show()
139
140
141
var cut = Context.RenderComponent<ImagePreviewer>(pb =>
142
- pb.Add(a => a.ZoomSpeed, 0.5d);
143
pb.Add(a => a.PreviewList, ["v1", "v2"]);
144
145
cut.Instance.Show();
0 commit comments