From 9aa65f8a590df6e5efa0e54bf1b18ec92aee13e3 Mon Sep 17 00:00:00 2001 From: dan437 <80175477+dan437@users.noreply.github.com> Date: Tue, 27 Apr 2021 11:16:49 -0700 Subject: [PATCH] Replace module.exports with export, remove unnecessary imports --- test/jest/index.js | 18 +++++------------- 1 file changed, 5 insertions(+), 13 deletions(-) diff --git a/test/jest/index.js b/test/jest/index.js index 295571d0cea0..098877489808 100644 --- a/test/jest/index.js +++ b/test/jest/index.js @@ -1,13 +1,5 @@ -import * as mockStore from './mock-store'; -import * as rendering from './rendering'; -import * as background from './background'; -import * as MOCKS from './mocks'; -import * as CONSTANTS from './constants'; - -module.exports = { - ...mockStore, - ...rendering, - ...background, - MOCKS, - CONSTANTS, -}; +export { createSwapsMockStore } from './mock-store'; +export { renderWithProvider } from './rendering'; +export { setBackgroundConnection } from './background'; +export * as MOCKS from './mocks'; +export * as CONSTANTS from './constants';