Skip to content
Snippets Groups Projects
ChoseRole.test.tsx 307 B
Newer Older
Defendi Alberto's avatar
Defendi Alberto committed
import React from 'react';
import { render } from '@testing-library/react';
import { ChoseRole } from './ChoseRole';

describe('<ChoseRole />', () => {
  it('renders without crashing', () => {
    const wrapper = render(<ChoseRole />);
    expect(wrapper.queryByTestId('ChoseRole')).toBeTruthy();
  });
});