You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
portainer/app/react/components/buttons/AddButton.test.tsx

19 lines
471 B

import { render } from '@/react-tools/test-utils';
import { AddButton } from './AddButton';
function renderDefault({
label = 'default label',
}: Partial<{ label: string }> = {}) {
return render(<AddButton to="">{label}</AddButton>);
}
test('should display a AddButton component', async () => {
const label = 'test label';
const { findByText } = renderDefault({ label });
const buttonLabel = await findByText(label);
expect(buttonLabel).toBeTruthy();
});