Remove useless test

Signed-off-by: soupette <cyril.lpz@gmail.com>
This commit is contained in:
soupette 2021-01-27 10:32:39 +01:00
parent 2d6d30643e
commit a50ad94377

View File

@ -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();
});
});