From 891d82411cede17c48d09a7d48231b61191a1fd8 Mon Sep 17 00:00:00 2001 From: John Coburn Date: Fri, 6 Oct 2023 12:15:41 -0500 Subject: [PATCH] move import of provider after import of mocks --- src/routes/ViewAllLogs/ViewAllLogs.test.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/routes/ViewAllLogs/ViewAllLogs.test.js b/src/routes/ViewAllLogs/ViewAllLogs.test.js index aee92ee33..235ff7724 100644 --- a/src/routes/ViewAllLogs/ViewAllLogs.test.js +++ b/src/routes/ViewAllLogs/ViewAllLogs.test.js @@ -8,7 +8,7 @@ import { noop } from 'lodash'; import { runAxeTest } from '@folio/stripes-testing'; import { buildMutator } from '@folio/stripes-data-transfer-components/test/helpers'; -import { ModuleHierarchyProvider } from '@folio/stripes/core'; + import { renderWithIntl, @@ -16,6 +16,7 @@ import { buildStripes, } from '../../../test/jest/helpers'; import '../../../test/jest/__mock__'; +import { ModuleHierarchyProvider } from '@folio/stripes/core'; import ViewAllLogs, { ViewAllLogsManifest, getLogsQuery, getLogsPath } from './ViewAllLogs';