Files
chat-gpz/components/Chat/ChatLayout.test.tsx
T
Zacharias-Brohn d702390660 initial commit
2026-01-14 06:12:55 +01:00

11 lines
341 B
TypeScript

import { render, screen } from '@/test-utils';
import ChatLayout from './ChatLayout';
describe('ChatLayout', () => {
it('renders chat interface', () => {
render(<ChatLayout />);
expect(screen.getByText('AI Chat')).toBeInTheDocument();
expect(screen.getByPlaceholderText('Type your message...')).toBeInTheDocument();
});
});