Files
next-app-template/components/Welcome/Welcome.test.tsx
2023-11-19 19:07:26 +04:00

15 lines
409 B
TypeScript

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