Files
ds-pages/components/Welcome/Welcome.test.tsx
2023-03-16 11:56:41 +00:00

13 lines
347 B
TypeScript

import { render, screen } from '@testing-library/react';
import { Welcome } from './Welcome';
describe('Welcome component', () => {
it('has correct Next.js theming section link', () => {
render(<Welcome />);
expect(screen.getByText('this guide')).toHaveAttribute(
'href',
'https://mantine.dev/guides/next/'
);
});
});