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 c2167de commit e1156ba
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions src/Cody.VisualStudio.Tests/AutocompleteTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@
using EnvDTE;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using WindowsInput;
using WindowsInput.Native;
Expand All @@ -21,7 +19,7 @@ public AutocompleteTests(ITestOutputHelper output) : base(output) { }
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 @@ -54,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 e1156ba

Please sign in to comment.