Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

10 righe
273 B

  1. import React from 'react';
  2. import { render, screen } from '@testing-library/react';
  3. import App from './App';
  4. test('renders learn react link', () => {
  5. render(<App />);
  6. const linkElement = screen.getByText(/learn react/i);
  7. expect(linkElement).toBeInTheDocument();
  8. });