Files
website/frontend/vite-template-master/src/components/Welcome/Welcome.test.tsx
2025-03-26 14:08:03 +00:00

13 lines
323 B
TypeScript

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