diff --git a/plugins/catalog-graph/src/components/CatalogGraphCard/CatalogGraphCard.test.tsx b/plugins/catalog-graph/src/components/CatalogGraphCard/CatalogGraphCard.test.tsx
index eb65f77242..f3717f8b70 100644
--- a/plugins/catalog-graph/src/components/CatalogGraphCard/CatalogGraphCard.test.tsx
+++ b/plugins/catalog-graph/src/components/CatalogGraphCard/CatalogGraphCard.test.tsx
@@ -39,13 +39,6 @@ describe('', () => {
let catalog: jest.Mocked;
let apis: TestApiRegistry;
- beforeAll(() => {
- Object.defineProperty(window.SVGElement.prototype, 'getBBox', {
- value: () => ({ width: 100, height: 100 }),
- configurable: true,
- });
- });
-
beforeEach(() => {
entity = {
apiVersion: 'a',
diff --git a/plugins/catalog-graph/src/components/CatalogGraphPage/CatalogGraphPage.test.tsx b/plugins/catalog-graph/src/components/CatalogGraphPage/CatalogGraphPage.test.tsx
index fc5676e7c9..eb31e07a65 100644
--- a/plugins/catalog-graph/src/components/CatalogGraphPage/CatalogGraphPage.test.tsx
+++ b/plugins/catalog-graph/src/components/CatalogGraphPage/CatalogGraphPage.test.tsx
@@ -40,21 +40,6 @@ describe('', () => {
let wrapper: JSX.Element;
let catalog: jest.Mocked;
- beforeAll(() => {
- Object.defineProperty(window.SVGElement.prototype, 'getBBox', {
- value: () => ({ width: 100, height: 100 }),
- configurable: true,
- });
- Object.defineProperty(window.SVGElement.prototype, 'viewBox', {
- value: { baseVal: { x: 0, y: 0, width: 100, height: 100 } },
- configurable: true,
- });
- Object.defineProperty(window.MouseEvent.prototype, 'view', {
- value: window,
- configurable: true,
- });
- });
-
beforeEach(() => {
const entityC = {
apiVersion: 'a',
diff --git a/plugins/catalog-graph/src/components/EntityRelationsGraph/CustomNode.test.tsx b/plugins/catalog-graph/src/components/EntityRelationsGraph/CustomNode.test.tsx
index 7602f4558d..6e034db2b6 100644
--- a/plugins/catalog-graph/src/components/EntityRelationsGraph/CustomNode.test.tsx
+++ b/plugins/catalog-graph/src/components/EntityRelationsGraph/CustomNode.test.tsx
@@ -19,13 +19,6 @@ import { CustomNode } from './CustomNode';
import userEvent from '@testing-library/user-event';
describe('', () => {
- beforeAll(() => {
- Object.defineProperty(window.SVGElement.prototype, 'getBBox', {
- value: () => ({ width: 100, height: 100 }),
- configurable: true,
- });
- });
-
test('renders node', async () => {
const { getByText } = await renderInTestApp(