diff --git a/x-pack/plugins/apm/public/components/app/transaction_overview/transaction_overview.test.tsx b/x-pack/plugins/apm/public/components/app/transaction_overview/transaction_overview.test.tsx
index e130802408d4c..5b3118e527fa4 100644
--- a/x-pack/plugins/apm/public/components/app/transaction_overview/transaction_overview.test.tsx
+++ b/x-pack/plugins/apm/public/components/app/transaction_overview/transaction_overview.test.tsx
@@ -23,6 +23,7 @@ import {
} from '../../../utils/test_helpers';
import { fromQuery } from '../../shared/links/url_helpers';
import { TransactionOverview } from '.';
+import { __IntlProvider as IntlProvider } from '@kbn/i18n-react';
const KibanaReactContext = createKibanaReactContext({
uiSettings: { get: () => true },
@@ -64,15 +65,17 @@ function setup({
jest.spyOn(useFetcherHook, 'useFetcher').mockReturnValue({} as any);
return renderWithTheme(
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
);
}