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