mafzaal's picture
Refactor Dockerfile and update README for FastAPI RAG application
7a1c9d6
raw
history blame contribute delete
266 Bytes
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();
});