Files
twenty/front/src/components/form/__tests__/Checkbox.test.tsx
2023-04-18 18:27:54 +02:00

13 lines
319 B
TypeScript

import { render } from '@testing-library/react';
import { RegularCheckbox } from '../__stories__/Checkbox.stories';
it('Checks the NavItem renders', () => {
const { getByTestId } = render(<RegularCheckbox />);
expect(getByTestId('input-checkbox')).toHaveAttribute(
'name',
'selected-company-1',
);
});