import React from 'react';
import { render, screen } from '@testing-library/react';
import ChatbotContent from './ChatbotContent';
describe('ChatbotContent', () => {
it('should render ChatbotContent with children', () => {
render(Chatbot Content);
expect(screen.getByText('Chatbot Content')).toBeTruthy();
});
it('should render ChatbotContent with custom classname', () => {
const { container } = render(Chatbot Content);
expect(container.querySelector('.custom-class')).toBeTruthy();
});
});