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 ef13cef commit edc032dCopy full SHA for edc032d
test/PowerShellEditorServices.Test.E2E/TestsFixture.cs
@@ -83,6 +83,11 @@ public async Task InitializeAsync()
83
DirectoryInfo testdir =
84
Directory.CreateDirectory(Path.Combine(s_binDir, Path.GetRandomFileName()));
85
86
+ LanguageClient.Window.OnLogMessage((message, messageType) =>
87
+ {
88
+ Console.WriteLine($"{messageType.ToString()}: {message}");
89
+ });
90
+
91
await LanguageClient.Initialize(testdir.FullName);
92
93
// Make sure Script Analysis is enabled because we'll need it in the tests.
0 commit comments