import * as React from 'react'; import { render } from '@testing-library/react'; import Card from '.'; describe('Card', () => { it('should render the Card without crashing', () => { const { getByText } = render(Card content); expect(getByText('Card content')).toBeDefined(); }); });