From c4f342cd1191a379c343a3399c493237cf353e93 Mon Sep 17 00:00:00 2001 From: Richard Park Date: Thu, 18 Feb 2021 23:05:18 -0800 Subject: [PATCH] Fixing issue where the test failing wasn't actually passed on to the test framework. --- .../test/functional/trace.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/monitor/monitor-opentelemetry-exporter/test/functional/trace.test.ts b/sdk/monitor/monitor-opentelemetry-exporter/test/functional/trace.test.ts index 641e5b98ddca..990611c4a18f 100644 --- a/sdk/monitor/monitor-opentelemetry-exporter/test/functional/trace.test.ts +++ b/sdk/monitor/monitor-opentelemetry-exporter/test/functional/trace.test.ts @@ -46,7 +46,7 @@ describe("Trace Exporter Scenarios", () => { }); }) .catch((e) => { - throw e; + done(e); }); }); });