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