initial commit

This commit is contained in:
Zacharias-Brohn
2026-01-14 06:12:55 +01:00
commit d702390660
46 changed files with 21386 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
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();
});
});