dotnet / vscode-csharp

Official C# support for Visual Studio Code
MIT License
2.88k stars 676 forks source link

Fix integration tests on 1.95.0 and switch back to 'stable' channel #7711

Open dibarbet opened 3 weeks ago

dibarbet commented 3 weeks ago

Switched to 1.94.2 here to fix breaks in code action tests - https://github.com/dotnet/vscode-csharp/pull/7708

dibarbet commented 3 weeks ago

Cause appears to be https://github.com/microsoft/vscode/issues/232679

Introducing an artificial 2 second delay in our code action handler causes the test to fail 100% of the time locally. CI logs show the code action request taking about ~2 seconds for the failing instances in CI as well. Passing tests have the code action request finish in under a second.

dibarbet commented 3 weeks ago

Resolved by https://github.com/microsoft/vscode/pull/232772

Once it makes it into a vscode stable release we can switch back.