ScreenTests: Remove invalid constraints

Negative values for cursor position are not invalid
This commit is contained in:
softworkz
2025-12-06 20:09:05 +01:00
parent 6246b44d68
commit daa9f399e9

View File

@@ -37,8 +37,6 @@ namespace ElectronNET.IntegrationTests.Tests
{
var point = await Electron.Screen.GetCursorScreenPointAsync();
point.Should().NotBeNull();
point.X.Should().BeGreaterThanOrEqualTo(0);
point.Y.Should().BeGreaterThanOrEqualTo(0);
}
[SkippableFact(Timeout = 20000)]