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