Skip to content

Commit

Permalink
Tests fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomasz Gołębiowski committed Jan 2, 2025
1 parent e1156ba commit 9d3c77a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Cody.VisualStudio.Tests/AutocompleteTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@ public class AutocompleteTests : TestsBase
public AutocompleteTests(ITestOutputHelper output) : base(output) { }


[VsFact(Version = VsVersion.VS2022)]
[VsFact(Version = VsVersion.VS2022, ReuseInstance = false)]
public async Task Autocomplete_Is_Working()
{
await GetPackageAsync();

await WaitForChat();
await OpenSolution(SolutionsPaths.GetConsoleApp1File("ConsoleApp1.sln"));
await OpenDocument(SolutionsPaths.GetConsoleApp1File(@"ConsoleApp1\Manager.cs"));
await WaitForAsync(() => CodyPackage.TestingSupportService.InProgressBackgroundTasksCount == 0);
Expand Down Expand Up @@ -52,7 +52,7 @@ public async Task Autocomplete_Is_Working()
public async Task Explicit_Invocation_Is_Working()
{
await GetPackageAsync();

await WaitForChat();
await OpenSolution(SolutionsPaths.GetConsoleApp1File("ConsoleApp1.sln"));
await OpenDocument(SolutionsPaths.GetConsoleApp1File(@"ConsoleApp1\Manager.cs"));
await WaitForAsync(() => CodyPackage.TestingSupportService.InProgressBackgroundTasksCount == 0);
Expand Down

0 comments on commit 9d3c77a

Please sign in to comment.