-
Notifications
You must be signed in to change notification settings - Fork 237
Setting to Disable Pester Code Lens #1585
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 2 commits
a3b5855
496e3e2
715ece2
e2359a4
f6724ed
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,13 +38,15 @@ public class LSPTestsFixture : IAsyncLifetime | |
public ITestOutputHelper Output { get; set; } | ||
|
||
protected PsesStdioProcess _psesProcess; | ||
public int ProcessId => _psesProcess.Id; | ||
|
||
public async Task InitializeAsync() | ||
{ | ||
var factory = new LoggerFactory(); | ||
_psesProcess = new PsesStdioProcess(factory, IsDebugAdapterTests); | ||
await _psesProcess.Start().ConfigureAwait(false); | ||
|
||
Console.WriteLine("PowerShell Editor Services Server started with PID {0}", ProcessId); | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. So I'm late back to this, but I thought it looked fishy when I reviewed it... I think we want to use There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The intent is to have a indicator for when I breakpoint right past this which process to attach to for dual-debugging, would the ITestOutputHelper still output that to the vscode debug console at that point? |
||
// TIP: Add Breakpoint here and attach debugger using the PID from the above message | ||
Diagnostics = new List<Diagnostic>(); | ||
TelemetryEvents = new List<PsesTelemetryEvent>(); | ||
DirectoryInfo testdir = | ||
|
Uh oh!
There was an error while loading. Please reload this page.