mirror of
https://github.com/workhardbekind/workout-challenge.git
synced 2026-07-04 09:23:32 -04:00
8 lines
246 B
JavaScript
8 lines
246 B
JavaScript
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();
|
|
});
|