This commit is contained in:
2021-11-15 03:14:35 -03:00
parent 6f4f8f16fb
commit d85252da0a
252 changed files with 52471 additions and 97845 deletions
+8
View File
@@ -0,0 +1,8 @@
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();
});