Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion tests/Aspire.Playground.Tests/ProjectSpecificTests.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ await app.WaitForTextAsync($"I'm Batman. - Batman")
await app.StopAsync();
}

[Fact(Skip = "https://github.com/dotnet/aspire/issues/5489")]
[Fact]
public async Task KafkaTest()
{
var appHostPath = Directory.GetFiles(AppContext.BaseDirectory, "KafkaBasic.AppHost.dll").Single();
Expand All @@ -39,6 +39,10 @@ public async Task KafkaTest()
await app.StartAsync();
await app.WaitForResources().WaitAsync(TimeSpan.FromMinutes(2));

// Wait for the producer to start sending messages
await app.WaitForTextAsync("Hello, World! 10").WaitAsync(TimeSpan.FromMinutes(5));

// Wait for the consumer to receive some messages
await WaitForAllTextAsync(app,
[
"Hello, World! 343",
Expand Down