Files
todo-list/client/src/App.test.tsx
2022-07-09 17:54:52 -03:00

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