aaredb/frontend/src/App.test.tsx
2024-10-24 10:31:09 +02:00

10 lines
277 B
TypeScript

import React from 'react';
import { render, screen } from '@testing-library/react';
import App from './App.tsx';
test('renders learn react link', () => {
render(<App />);
const linkElement = screen.getByText(/learn react/i);
expect(linkElement).toBeInTheDocument();
});