1
0
James Ketrenos a8995030ac Almost working with new react
Signed-off-by: James Ketrenos <james_eikona@ketrenos.com>
2022-01-03 21:13:47 -08:00

9 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();
});