Skip to content
Snippets Groups Projects
SignInForm.test.tsx 311 B
Newer Older
import React from 'react';
import { render, fireEvent } from '@testing-library/react';
import { SignInForm } from './SignInForm';

describe('<SignInForm />', () => {
  it('should render form', () => {
    const wrapper = render(<SignInForm />);
    expect(wrapper.queryByTestId('Form')).toBeTruthy();