2022-03-01 12:45:42 +00:00
|
|
|
import { render } from '@testing-library/react';
|
|
|
|
|
2022-03-02 09:32:22 +00:00
|
|
|
import { Select } from './select';
|
2022-03-01 12:45:42 +00:00
|
|
|
|
|
|
|
describe('Select', () => {
|
|
|
|
it('should render successfully', () => {
|
|
|
|
const { baseElement } = render(<Select />);
|
|
|
|
expect(baseElement).toBeTruthy();
|
|
|
|
});
|
|
|
|
});
|