diff --git a/playground/AzureStorageEndToEnd/AzureStorageEndToEnd.ApiService/Program.cs b/playground/AzureStorageEndToEnd/AzureStorageEndToEnd.ApiService/Program.cs index d20008dbffc..60c8707bdda 100644 --- a/playground/AzureStorageEndToEnd/AzureStorageEndToEnd.ApiService/Program.cs +++ b/playground/AzureStorageEndToEnd/AzureStorageEndToEnd.ApiService/Program.cs @@ -11,6 +11,7 @@ var app = builder.Build(); +app.MapDefaultEndpoints(); app.MapGet("/", async (BlobServiceClient bsc) => { var container = bsc.GetBlobContainerClient("mycontainer"); diff --git a/tests/Aspire.Playground.Tests/AppHostTests.cs b/tests/Aspire.Playground.Tests/AppHostTests.cs index bdf383bc166..b80c1899653 100644 --- a/tests/Aspire.Playground.Tests/AppHostTests.cs +++ b/tests/Aspire.Playground.Tests/AppHostTests.cs @@ -166,6 +166,11 @@ public static TheoryData TestEndpoints() { IList candidates = [ + new TestEndpoints("AzureStorageEndToEnd.AppHost", + resourceEndpoints: new() { { "api", ["/alive", "/health", "/"] } }, + waitForTexts: [ + new ("storage", "Azurite Table service is successfully listening") + ]), new TestEndpoints("MilvusPlayground.AppHost", resourceEndpoints: new() { { "apiservice", ["/alive", "/health", "/create", "/search"] } }, waitForTexts: [ diff --git a/tests/Aspire.Playground.Tests/Aspire.Playground.Tests.csproj b/tests/Aspire.Playground.Tests/Aspire.Playground.Tests.csproj index 4be3b38cce9..c8c88fe31b6 100644 --- a/tests/Aspire.Playground.Tests/Aspire.Playground.Tests.csproj +++ b/tests/Aspire.Playground.Tests/Aspire.Playground.Tests.csproj @@ -34,6 +34,7 @@ +