Skip to content

Commit

Permalink
fix: disable LanguageServerWrapperTest#testStopAndActive on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
sebthom committed Sep 17, 2024
1 parent bda3c51 commit 85593df
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@ public void testConnect() throws Exception {
*/
@Test
public void testStopAndActive() throws CoreException, AssertionError, InterruptedException, ExecutionException {
if (System.getProperty("os.name").toLowerCase().startsWith("windows")) {
// FIXME temporarily disabling test on Windows because of https://github.com/eclipse/lsp4e/issues/1103
return;
}
IFile testFile1 = TestUtils.createFile(project, "shouldUseExtension.lsptWithMultiRoot", "");
IEditorPart editor1 = TestUtils.openEditor(testFile1);
@NonNull Collection<LanguageServerWrapper> wrappers = LanguageServiceAccessor.getLSWrappers(testFile1, request -> true);
Expand Down

0 comments on commit 85593df

Please sign in to comment.