/* eslint-disable jest/require-top-level-describe */
import { render } from '@testing-library/react';
import React from 'react';
import { TextColor } from '../../../helpers/constants/design-system';
import { Icon, IconName } from '..';
import { HelpText, HelpTextSeverity } from '.';
describe('HelpText', () => {
it('should render with text inside the HelpText', () => {
const { getByText } = render(help text);
expect(getByText('help text')).toBeDefined();
expect(getByText('help text')).toHaveClass('mm-help-text');
});
it('should match snapshot', () => {
const { container } = render(help text);
expect(container).toMatchSnapshot();
});
it('should render with and additional className', () => {
const { getByText } = render(
help text,
);
expect(getByText('help text')).toHaveClass('mm-help-text test-class');
});
it('should render with react nodes inside the HelpText', () => {
const { getByText, getByTestId } = render(
help text
,
);
expect(getByText('help text')).toBeDefined();
expect(getByTestId('icon')).toBeDefined();
});
it('should render with severities', () => {
const { getByText } = render(
<>
error
success
warning
info
>,
);
expect(getByText('error')).toHaveClass('mm-box--color-error-default');
expect(getByText('success')).toHaveClass('mm-box--color-success-default');
expect(getByText('warning')).toHaveClass('mm-box--color-warning-default');
expect(getByText('info')).toHaveClass('mm-box--color-info-default');
});
it('should render with different colors', () => {
const { getByText } = render(
<>
default
text default
text alternative
text muted
>,
);
expect(getByText('default')).toHaveClass('mm-box--color-text-default');
expect(getByText('text default')).toHaveClass('mm-box--color-text-default');
expect(getByText('text alternative')).toHaveClass(
'mm-box--color-text-alternative',
);
expect(getByText('text muted')).toHaveClass('mm-box--color-text-muted');
});
it('should render with a different html element if children is an object', () => {
const { getByText, getByTestId } = render(
<>
help text as p
help text as div
>,
);
expect(getByText('help text as p')).toBeDefined();
expect(getByText('help text as p').tagName).toBe('P');
expect(getByText('help text as div')).toBeDefined();
expect(getByTestId('help-text-div').tagName).toBe('DIV');
});
});