Skip to content

Commit

Permalink
Disable TabViewTests.GamePadTest on RS2 (#3094)
Browse files Browse the repository at this point in the history
  • Loading branch information
StephenLPeters authored Aug 12, 2020
1 parent 8e46614 commit 4468528
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions dev/TabView/InteractionTests/TabViewTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -537,6 +537,12 @@ public void CloseButtonOverlayModeTests()
[TestMethod]
public void GamePadTest()
{
if (PlatformConfiguration.IsOSVersionLessThan(OSVersion.Redstone3))
{
// Disabled on RS2 for reliability issues: https://github.com/microsoft/microsoft-ui-xaml/issues/3093
Log.Warning("This test is unreliable on RS2 and has been disabled.");
return;
}
using (var setup = new TestSetupHelper("TabView Tests"))
{
Button tabContent = FindElement.ByName<Button>("FirstTabButton");
Expand Down

0 comments on commit 4468528

Please sign in to comment.