diff --git a/packages/core/content-type-builder/admin/src/components/FormModalEndActions/tests/index.test.js b/packages/core/content-type-builder/admin/src/components/FormModalEndActions/tests/index.test.js
deleted file mode 100644
index 642ff2ac05..0000000000
--- a/packages/core/content-type-builder/admin/src/components/FormModalEndActions/tests/index.test.js
+++ /dev/null
@@ -1,31 +0,0 @@
-/**
- *
- * Tests for FormModalEndActions
- *
- */
-
-import React from 'react';
-import { render } from '@testing-library/react';
-import { ThemeProvider, lightTheme } from '@strapi/parts';
-import { IntlProvider } from 'react-intl';
-import FormModalEndActions from '../index';
-
-const messages = {
- 'content-type-builder.component.name': 'Form Modal End Actions',
-};
-
-describe('', () => {
- it('renders and matches the snapshot', () => {
- const {
- container: { firstChild },
- } = render(
-
-
-
-
-
- );
-
- expect(firstChild).toMatchInlineSnapshot();
- });
-});