From a5e96cde2ee4600f316aa02fceebe4b1c03e593f Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Sat, 25 Apr 2020 00:52:41 -0400 Subject: [PATCH] A more informative error perhaps? --- tests/Tgstation.Server.Tests/IntegrationTest.cs | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/Tgstation.Server.Tests/IntegrationTest.cs b/tests/Tgstation.Server.Tests/IntegrationTest.cs index c4180d4524..da497fd679 100644 --- a/tests/Tgstation.Server.Tests/IntegrationTest.cs +++ b/tests/Tgstation.Server.Tests/IntegrationTest.cs @@ -232,6 +232,11 @@ namespace Tgstation.Server.Tests await new InstanceManagerTest(adminClient.Instances, server.Directory).Run(cancellationToken).ConfigureAwait(false); } } + catch (Exception ex) + { + Console.WriteLine($"TEST ERROR: {ex.GetType()} in flight!"); + throw; + } finally { serverCts.Cancel();