portainer/app/react/components/form-components/FileUpload/FileUploadForm.test.tsx

21 lines
536 B
TypeScript
Raw Normal View History

import { render } from '@testing-library/react';
import { FileUploadForm } from './FileUploadForm';
test('render should include description', async () => {
const onClick = vi.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();
});