Skip to content

Commit 0334527

Browse files
committed
fix: Adjust new conditional tests
1 parent 1d702f9 commit 0334527

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/Uno.UI.RuntimeTests/Tests/Windows_UI_Xaml_Controls/Given_ScrollViewer.cs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -673,7 +673,8 @@ public async Task When_WheelChanged_OnlyHorizontallyScrollable()
673673
scp.VerticalOffset.Should().Be(0);
674674
}
675675

676-
[ConditionalTest(IgnoredPlatforms = RuntimeTestPlatforms.SkiaIslands)] // Flaky on Skia WPF Islands #9080
676+
[TestMethod]
677+
[PlatformCondition(ConditionMode.Exclude, RuntimeTestPlatforms.SkiaIslands)] // Flaky on Skia WPF Islands #9080
677678
#if __WASM__
678679
[Ignore("Scrolling is handled by native code and InputInjector is not yet able to inject native pointers.")]
679680
#elif !HAS_INPUT_INJECTOR
@@ -1481,8 +1482,9 @@ public async Task When_TouchTap_Then_NestedElementReceivePointerEvents()
14811482
events.Should().BeEquivalentTo("enter", "pressed", "release", "exited");
14821483
}
14831484

1484-
[ConditionalTest(IgnoredPlatforms = RuntimeTestPlatforms.SkiaX11)] // Flaky on Skia X11 #9080
1485+
[TestMethod]
14851486
[RunsOnUIThread]
1487+
[PlatformCondition(ConditionMode.Exclude, RuntimeTestPlatforms.SkiaX11)] // Flaky on Skia X11 #9080
14861488
#if __WASM__
14871489
[Ignore("Scrolling is handled by native code and InputInjector is not yet able to inject native pointers.")]
14881490
#elif !HAS_INPUT_INJECTOR

0 commit comments

Comments
 (0)