We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 81f9240 commit 49500faCopy full SHA for 49500fa
test/PowerShellEditorServices.Test/Debugging/DebugServiceTests.cs
@@ -587,9 +587,10 @@ await debugService.SetLineBreakpointsAsync(
587
Assert.Equal("$false", falseVar.ValueString);
588
}
589
590
- [Fact]
+ [SkippableFact]
591
public async Task DebuggerSetsVariablesNoConversion()
592
{
593
+ Skip.If(VersionUtils.IsLinux, "Test hangs on Linux for some reason");
594
await debugService.SetLineBreakpointsAsync(
595
variableScriptFile,
596
new[] { BreakpointDetails.Create(variableScriptFile.FilePath, 14) }).ConfigureAwait(true);
0 commit comments