-
Notifications
You must be signed in to change notification settings - Fork 4k
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
Fix VB intellisense integration test #70756
Conversation
options.SetOptionValue(DefaultOptions.ResponsiveCompletionOptionId, false); | ||
var latencyGuardOptionKey = new EditorOptionKey<bool>("EnableTypingLatencyGuard"); | ||
options.SetOptionValue(latencyGuardOptionKey, false); | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@JoshuaBStevens @AmadeusW can you check this? It appears the editor is overwriting our explicit settings somewhere.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Filed a bug to track the option issue. Meanwhile, let's merge this to get the test fixed
@sharwell PTAL, thanks |
src/VisualStudio/IntegrationTest/New.IntegrationTests/InProcess/StateResetInProcess.cs
Outdated
Show resolved
Hide resolved
await base.InitializeAsync(); | ||
|
||
// Try disable the responsive completion option again: https://github.com/dotnet/roslyn/issues/70787 | ||
await TestServices.StateReset.DisableResponsiveCompletion(HangMitigatingCancellationToken); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
😕 I don't understand how this would make a difference. InitializeAsync
is the call which disables responsive non-completion.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yea, I don't know. That's tracked by the bug I filed, just want to get this in while we are trying to figure it out
No description provided.