Files
Crm-Client-Frontend/components/Welcome/Welcome.test.tsx
2025-10-18 01:46:46 +03:00

13 lines
337 B
TypeScript

import { render, screen } from '@/test-utils';
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/'
);
});
});