Skip to content
Snippets Groups Projects
SignUpForm.test.tsx 300 B
Newer Older
Defendi Alberto's avatar
Defendi Alberto committed
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();
  });
});