initial commit
This commit is contained in:
@@ -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();
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user