Reac front end for psicometric app

App.test.js 244B

123456789
  1. import { render, screen } from '@testing-library/react';
  2. import App from './App';
  3. test('renderizar el login', () => {
  4. render(<App />);
  5. const linkElement = screen.getByText(/GrupoDIT/i);
  6. expect(linkElement).toBeInTheDocument();
  7. });