You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/ElectronNET.IntegrationTests/Tests/WebContentsTests.cs
+4-3Lines changed: 4 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -104,9 +104,10 @@ public async Task ZoomFactorProperty_check()
104
104
ok.Should().Be(2.0);
105
105
}
106
106
107
-
[Fact(Timeout=20000)]
107
+
[SkippableFact(Timeout=20000)]
108
108
publicasyncTaskGetSetZoomLevel_check()
109
109
{
110
+
Skip.If(Environment.GetEnvironmentVariable("GITHUB_RUN_ID")!=null&&RuntimeInformation.IsOSPlatform(OSPlatform.Windows),"Skipping test on Windows CI.");
Skip.If(Environment.GetEnvironmentVariable("GITHUB_RUN_ID")!=null&&RuntimeInformation.IsOSPlatform(OSPlatform.Windows),"Skipping test on Windows CI.");
@@ -181,7 +182,7 @@ public async Task GetSetUserAgent_check()
181
182
ok.Should().Be("MyUserAgent/1.0");
182
183
}
183
184
184
-
[Fact(Timeout=20000)]
185
+
[SkippableFact(Timeout=20000)]
185
186
publicasyncTaskUserAgentProperty_check()
186
187
{
187
188
Skip.If(Environment.GetEnvironmentVariable("GITHUB_RUN_ID")!=null&&RuntimeInformation.IsOSPlatform(OSPlatform.Windows),"Skipping test on Windows CI.");
0 commit comments