Files
spring-boot-rest/spring-boot-modules/spring-boot-react/frontend/src/App.test.js
Sallo Szrajbman 86d75ea394 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();
});