11 lines
248 B
TypeScript
11 lines
248 B
TypeScript
import { render } from '@testing-library/react';
|
|
|
|
import { Input } from './input';
|
|
|
|
describe('Input', () => {
|
|
it('should render successfully', () => {
|
|
const { baseElement } = render(<Input />);
|
|
expect(baseElement).toBeTruthy();
|
|
});
|
|
});
|