diff --git a/packages/strapi-plugin-content-type-builder/admin/src/containers/FormModal/forms/tests/index.test.js b/packages/strapi-plugin-content-type-builder/admin/src/containers/FormModal/forms/tests/index.test.js deleted file mode 100644 index 4bf2cded8a..0000000000 --- a/packages/strapi-plugin-content-type-builder/admin/src/containers/FormModal/forms/tests/index.test.js +++ /dev/null @@ -1,11 +0,0 @@ -import fields from '../index'; - -describe('forms', () => { - it('should contain private field in relation input type', () => { - const { items } = fields.attribute.form.advanced({}, 'relation', null); - - expect( - items.find(relationItem => relationItem.find(item => item.name === 'private')).length - ).toBeTruthy(); - }); -});