Files
next-app-template/components/Welcome/Welcome.test.tsx
Vitaly Rtishchev f63101a095 Init template
2023-05-28 10:55:11 +04: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/'
);
});
});