Spaces:
Sleeping
Sleeping
File size: 331 Bytes
1af45d7 |
1 2 3 4 5 6 7 8 9 10 |
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();
});
|