vega-frontend-monorepo/libs/ui-toolkit/src/components/input/input.spec.tsx
Bartłomiej Głownia 3f490f03ca Add icon to input
2022-03-07 13:57:06 -08:00

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