vega-frontend-monorepo/libs/ui-toolkit/src/components/input/input.spec.tsx

11 lines
248 B
TypeScript
Raw Normal View History

2022-03-01 11:27:40 +00:00
import { render } from '@testing-library/react';
2022-03-02 09:32:22 +00:00
import { Input } from './input';
2022-03-01 11:27:40 +00:00
describe('Input', () => {
it('should render successfully', () => {
const { baseElement } = render(<Input />);
expect(baseElement).toBeTruthy();
});
});