From 48de7e3b5b23054da1373207ee3667c7577fc58c Mon Sep 17 00:00:00 2001 From: Aaron Powell Date: Tue, 16 Jul 2024 00:13:04 +0000 Subject: [PATCH] Removing sleep --- test/CommunityToolkit.Aspire.AppHost.Tests/ProgramTests.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/CommunityToolkit.Aspire.AppHost.Tests/ProgramTests.cs b/test/CommunityToolkit.Aspire.AppHost.Tests/ProgramTests.cs index a4488beb..8e1fc1df 100644 --- a/test/CommunityToolkit.Aspire.AppHost.Tests/ProgramTests.cs +++ b/test/CommunityToolkit.Aspire.AppHost.Tests/ProgramTests.cs @@ -32,8 +32,6 @@ public async Task Given_Executable_Resource_When_Invoked_Then_Root_Returns_OK() await using var app = await appHost.BuildAsync(); await app.StartAsync(); - Thread.Sleep(10000); - // Act var httpClient = app.CreateHttpClient("executableapp"); var response = await httpClient.GetAsync("/");