React Basic Project Setup

This commit is contained in:
brausjonas
2023-04-27 15:11:02 +02:00
parent 5867e46e1d
commit 540b15c0b0
23 changed files with 17662 additions and 0 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();
});