Spaces:
Sleeping
Sleeping
File size: 266 Bytes
7a1c9d6 | 1 2 3 4 5 6 7 8 | import { render, screen } from '@testing-library/react';
import App from './App';
test('renders RAG Chat Application header', () => {
render(<App />);
const linkElement = screen.getByText(/RAG Chat Application/i);
expect(linkElement).toBeInTheDocument();
}); |