Files
Homarr/components/Welcome/Welcome.test.tsx
2022-04-24 22:36:47 +02:00

13 lines
348 B
TypeScript

import { render, screen } from '@testing-library/react';
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/theming/next/'
);
});
});