import React from 'react'; import { render } from '@testing-library/react'; import { SignUpForm } from './SignUpForm'; describe('<SignUpForm />', () => { it('should render form', () => { const wrapper = render(<SignUpForm />); expect(wrapper.queryByTestId('Form')).toBeTruthy(); }); });