From 134aa724673698adc3d97676b89e149f73c9cc69 Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Fri, 24 Jul 2020 09:41:31 -0700 Subject: [PATCH] refactor(core): remove unused export (#38224) This export used to be here to turn this file into an ES Module - this is no longer needed because the file contains imports. PR Close #38224 --- packages/core/testing/src/before_each.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/packages/core/testing/src/before_each.ts b/packages/core/testing/src/before_each.ts index f438935169..42425bfc66 100644 --- a/packages/core/testing/src/before_each.ts +++ b/packages/core/testing/src/before_each.ts @@ -26,7 +26,3 @@ if (_global.beforeEach) { resetFakeAsyncZone(); }); } - -// TODO(juliemr): remove this, only used because we need to export something to have compilation -// work. -export const __core_private_testing_placeholder__ = '';