Sallo Szrajbman 45dcdf2a0d BAEL-4842 - Use React and Spring Boot to Build a Simple CRUD App
Updating PR to reduce complexity of react components
Fixing react test
2021-04-03 13:51:08 +01:00

9 lines
242 B
JavaScript

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