Skip to content

Commit 52feb6c

Browse files
committed
Adjust test skips
1 parent 9b05bef commit 52feb6c

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

test/PowerShellEditorServices.Test.E2E/LanguageServerProtocolMessageTests.cs

+1-3
Original file line numberDiff line numberDiff line change
@@ -1099,8 +1099,6 @@ await PsesLanguageClient
10991099
[SkippableFact]
11001100
public async Task CanSendHoverRequestAsync()
11011101
{
1102-
Skip.If(IsLinux, "This depends on the help system, which is flaky on Linux.");
1103-
Skip.If(PsesStdioLanguageServerProcessHost.IsWindowsPowerShell, "This help system isn't updated in CI.");
11041102
string filePath = NewTestFile("Write-Host");
11051103

11061104
Hover hover = await PsesLanguageClient.TextDocument.RequestHover(
@@ -1235,7 +1233,7 @@ await PsesLanguageClient
12351233
Assert.Equal(0, evaluateResponseBody.VariablesReference);
12361234
}
12371235

1238-
[Fact(Timeout = 60000)]
1236+
[SkippableFact(Timeout = 60000)]
12391237
public async Task CanSendGetCommandRequestAsync()
12401238
{
12411239
Skip.If(Environment.GetEnvironmentVariable("TF_BUILD") is not null,

0 commit comments

Comments
 (0)