diff --git a/build/AzurePipelinesTemplates/MUX-RunHelixTests-Job.yml b/build/AzurePipelinesTemplates/MUX-RunHelixTests-Job.yml index 7aaca70988..5be9cd7ac8 100644 --- a/build/AzurePipelinesTemplates/MUX-RunHelixTests-Job.yml +++ b/build/AzurePipelinesTemplates/MUX-RunHelixTests-Job.yml @@ -15,7 +15,7 @@ parameters: Release_x64: buildPlatform: 'x64' buildConfiguration: 'release' - helixTargetQueues: 'Windows.10.Amd64.ClientRS2.Open%3bWindows.10.Amd64.ClientRS4.Open' + helixTargetQueues: 'Windows.10.Amd64.ClientRS2.Open%3bWindows.10.Amd64.ClientRS4.Open%3bWindows.10.Amd64.Client19H1.Open' jobs: - job: ${{ parameters.name }} diff --git a/dev/CommandBarFlyout/InteractionTests/TextCommandBarFlyoutTests.cs b/dev/CommandBarFlyout/InteractionTests/TextCommandBarFlyoutTests.cs index 91c4311275..714553fecf 100644 --- a/dev/CommandBarFlyout/InteractionTests/TextCommandBarFlyoutTests.cs +++ b/dev/CommandBarFlyout/InteractionTests/TextCommandBarFlyoutTests.cs @@ -466,6 +466,12 @@ public void ValidateKeyboarding() return; } + if (PlatformConfiguration.IsOsVersionGreaterThanOrEqual(OSVersion.NineteenH1)) + { + Log.Warning("Test is disabled on 19H1 because the logic to restore focus seems to have regressed. Tracked by microsoft-ui-xaml#774"); + return; + } + using (var setup = new TextCommandBarFlyoutTestSetupHelper()) { Log.Comment("Give focus to the TextBox."); diff --git a/dev/Repeater/APITests/RepeaterTests.cs b/dev/Repeater/APITests/RepeaterTests.cs index 385df3f1c2..61dc548844 100644 --- a/dev/Repeater/APITests/RepeaterTests.cs +++ b/dev/Repeater/APITests/RepeaterTests.cs @@ -240,6 +240,12 @@ public void VerifyCurrentAnchor() [TestMethod] public void NestedRepeaterWithDataTemplateScenario() { + if (PlatformConfiguration.IsOsVersionGreaterThanOrEqual(OSVersion.NineteenH1)) + { + Log.Warning("This test is showing consistent issues with not scrolling enough, tracked by microsoft-ui-xaml#779"); + return; + } + ItemsRepeater rootRepeater = null; ScrollViewer scrollViewer = null; ManualResetEvent viewChanged = new ManualResetEvent(false);