mirror of
https://github.com/snowball-tools/snowballtools-base.git
synced 2025-01-05 13:16:46 +00:00
9 lines
246 B
TypeScript
9 lines
246 B
TypeScript
|
import { render, screen } from '@testing-library/react';
|
||
|
import App from './App';
|
||
|
|
||
|
test('renders learn react link', () => {
|
||
|
render(<App />);
|
||
|
const linkElement = screen.getByText(/learn react/i);
|
||
|
expect(linkElement).toBeInTheDocument();
|
||
|
});
|