taller-web/taller2/src/App.test.js

9 lines
246 B
JavaScript
Raw Normal View History

2021-09-29 23:23:59 -03:00
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();
});