import { render } from '@testing-library/react';
import Card from '../card';
describe('Card component', () => {
it('should render', () => {
const { asFragment } = render(
Title}>
Some content
);
expect(asFragment()).toMatchSnapshot();
});
it('should render card with links', () => {
const links = [
link
,
];
const { asFragment } = render(
Title} links={links}>
Some content
);
expect(asFragment()).toMatchSnapshot();
});
});