Skip to content

Commit 7b40f14

Browse files
committed
Skip broken Pester unit test
1 parent 0bddba0 commit 7b40f14

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

test/PowerShellEditorServices.Test.E2E/DebugAdapterProtocolMessageTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -507,7 +507,7 @@ public async Task CanLaunchScriptWithCommentedLastLineAsync()
507507
[SkippableFact]
508508
public async Task CanRunPesterTestFile()
509509
{
510-
Skip.If(s_isWindows, "Windows CI Pester is broken.");
510+
Skip.If(true, "Pester test is broken.");
511511
/* TODO: Get this to work on Windows.
512512
string pesterLog = Path.Combine(s_binDir, Path.GetRandomFileName() + ".log");
513513

test/PowerShellEditorServices.Test.E2E/LanguageServerProtocolMessageTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1098,7 +1098,7 @@ await PsesLanguageClient
10981098
}
10991099
}
11001100

1101-
[SkippableFact]
1101+
[Fact]
11021102
public async Task CanSendHoverRequestAsync()
11031103
{
11041104
string filePath = NewTestFile(testCommand);

test/PowerShellEditorServices.Test/Language/CompletionHandlerTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ public async Task CompletesVariableInFile()
102102
Assert.Equal(CompleteVariableInFile.ExpectedCompletion, actual);
103103
}
104104

105-
[SkippableFact]
105+
[Fact]
106106
public async Task CompletesAttributeValue()
107107
{
108108
(_, IEnumerable<CompletionItem> results) = await GetCompletionResultsAsync(CompleteAttributeValue.SourceDetails);

test/PowerShellEditorServices.Test/Language/SymbolsServiceTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -901,7 +901,7 @@ public void FindsSymbolsWithNewLineInFile()
901901
AssertIsRegion(symbol.ScriptRegion, 27, 5, 27, 10);
902902
}
903903

904-
[SkippableFact()]
904+
[SkippableFact]
905905
public void FindsSymbolsInDSCFile()
906906
{
907907
Skip.If(!isWindows, "DSC only works properly on Windows.");

0 commit comments

Comments
 (0)