React und Tailwind aufgesetzt

This commit is contained in:
BettinaHallinger
2022-03-17 09:34:20 +01:00
parent 182cdf9597
commit 78a505eb44
17 changed files with 11782 additions and 9 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();
});