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/form-components/FileUpload/FileUploadForm.test.tsx

21 lines
540 B

import { render } from '@/react-tools/test-utils';
import { FileUploadForm } from './FileUploadForm';
test('render should include description', async () => {
const onClick = jest.fn();
const { findByText } = render(
<FileUploadForm
title="test button"
onChange={onClick}
description={<span>test description</span>}
/>
);
const button = await findByText('test button');
expect(button).toBeVisible();
const description = await findByText('test description');
expect(description).toBeVisible();
});