java-tutorials/spring-boot-modules/spring-boot-react/frontend/src/App.test.js

9 lines
242 B
JavaScript
Raw Normal View History

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();
});