We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f8011bb commit 95e745dCopy full SHA for 95e745d
1 file changed
src/DiffEngine.Tests/DiffRunnerTests.cs
@@ -1,5 +1,7 @@
1
-using System.IO;
+using System;
2
+using System.IO;
3
using System.Linq;
4
+using System.Runtime.InteropServices;
5
using System.Threading;
6
using DiffEngine;
7
using Xunit;
@@ -35,6 +37,10 @@ public void Kill()
35
37
[Fact]
36
38
public void LaunchAndKill()
39
{
40
+ if (!RuntimeInformation.IsOSPlatform(OSPlatform.Windows))
41
+ {
42
+ return;
43
+ }
44
DiffTools.AddCustomTool(
45
supportsAutoRefresh: true,
46
isMdi: false,
0 commit comments