gilbertyiga
Update space
1af45d7
raw
history blame contribute delete
331 Bytes
import React from 'react';
import { render, screen } from '@testing-library/react';
import TranslationDashboard from '../App';
test('renders evaluation results heading', () => {
render(<TranslationDashboard />);
const headingElement = screen.getByText(/evaluation results/i);
expect(headingElement).toBeInTheDocument();
});