From 81541d79607bdce7f329c89626bbdcbe8715481b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A9rald=20Barr=C3=A9?= Date: Tue, 12 Mar 2024 09:40:33 -0400 Subject: [PATCH] test --- .../PullDeliveryTests.cs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/Workleap.DomainEventPropagation.Subscription.PullDelivery.Tests/PullDeliveryTests.cs b/src/Workleap.DomainEventPropagation.Subscription.PullDelivery.Tests/PullDeliveryTests.cs index 350eacb..b191e54 100644 --- a/src/Workleap.DomainEventPropagation.Subscription.PullDelivery.Tests/PullDeliveryTests.cs +++ b/src/Workleap.DomainEventPropagation.Subscription.PullDelivery.Tests/PullDeliveryTests.cs @@ -97,6 +97,10 @@ public static async Task StartAsync(ITestOutputHelper testOutpu { var path = Path.GetTempFileName(); await File.WriteAllTextAsync(path, configuration); + + // For debug purposes only + testOutputHelper.WriteLine("Write configuration file at: " + path); + testOutputHelper.WriteLine("Write configuration content: " + await File.ReadAllTextAsync(path)); var container = new ContainerBuilder() .WithImage("workleap/eventgridemulator:0.2.0")