Skip to content

Commit

Permalink
Updated tests
Browse files Browse the repository at this point in the history
  • Loading branch information
jsuarezruiz committed Nov 30, 2023
1 parent 89353df commit b388f57
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Controls/tests/UITests/Tests/Issues/Issue3525.cs
Expand Up @@ -19,6 +19,11 @@ public Issue3525(TestDevice device)
[Test]
public void SpanRegionClicking()
{
if (Device == TestDevice.Mac)
{
Assert.Ignore("Click (x, y) pointer type mouse is not implemented.");
}

if (Device == TestDevice.Windows)
{
Assert.Ignore("This test is failing on Windows because the feature is not yet implemented: https://github.com/dotnet/maui/pull/17731");
Expand Down
5 changes: 5 additions & 0 deletions src/Controls/tests/UITests/Tests/Issues/Issue4734.cs
Expand Up @@ -15,6 +15,11 @@ public Issue4734(TestDevice device)
[Test]
public void Issue4734Test()
{
if (Device == TestDevice.Mac)
{
Assert.Ignore("Click (x, y) pointer type mouse is not implemented.");
}

if (Device == TestDevice.Windows)
{
Assert.Ignore("This test is failing, likely due to product issue");
Expand Down
5 changes: 5 additions & 0 deletions src/Controls/tests/UITests/Tests/LabelUITests.cs
Expand Up @@ -26,6 +26,11 @@ public override void _IsEnabled()
[Test]
public void SpanTapped()
{
if (Device == TestDevice.Mac)
{
Assert.Ignore("Click (x, y) pointer type mouse is not implemented.");
}

if (Device == TestDevice.Windows)
{
Assert.Ignore("This test is failing on iOS/Mac Catalyst/Windows because the feature is not yet implemented: https://github.com/dotnet/maui/issues/4734");
Expand Down

0 comments on commit b388f57

Please sign in to comment.