Reac front end for psicometric app
import { render, screen } from '@testing-library/react'; import App from './App'; test('renderizar el login', () => { render(<App />); const linkElement = screen.getByText(/GrupoDIT/i); expect(linkElement).toBeInTheDocument(); });