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