import React from 'react';
import { render, screen } from '@testing-library/react';
import '@testing-library/jest-dom';
import { HintBody } from '../HintBody';
test('renders without children', () => {
render();
expect(screen.getByTestId('HintBody')).toBeVisible();
});
test('renders children', () => {
render({});
expect(screen.getByRole('button', { name: 'Test Me' })).toBeVisible();
});
test('renders with class pf-v5-c-hint__body', () => {
render(Hint Body Test);
const body = screen.getByText('Hint Body Test');
expect(body).toHaveClass('pf-v5-c-hint__body');
});
test('renders with custom class names provided via prop', () => {
render(Hint Body Test);
const body = screen.getByText('Hint Body Test');
expect(body).toHaveClass('custom-classname');
});
test('renders with inherited element props spread to the component', () => {
render(Test);
expect(screen.getByText('Test')).toHaveAccessibleName('labelling-id');
});
test('matches snapshot', () => {
const { asFragment } = render({});
expect(asFragment()).toMatchSnapshot();
});