mirror of
https://github.com/snowball-tools/snowballtools-base.git
synced 2025-01-03 15:26: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();
|
|
});
|