Skip to content

Commit

Permalink
Putting in a longer delay to let the process start
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronpowell committed Jul 16, 2024
1 parent 48de7e3 commit 01325cd
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions test/CommunityToolkit.Aspire.AppHost.Tests/ProgramTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,9 @@ public async Task Given_Executable_Resource_When_Invoked_Then_Root_Returns_OK()

// Act
var httpClient = app.CreateHttpClient("executableapp");

await Task.Delay(TimeSpan.FromSeconds(30));

var response = await httpClient.GetAsync("/");

// Assert
Expand Down

0 comments on commit 01325cd

Please sign in to comment.