mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
e923110092
* migrate help-text to TS delete story with js format Update ui/components/component-library/help-text/help-text.types.ts Co-authored-by: George Marshall <georgewrmarshall@gmail.com> add forwardRef add ref in forwardRef final updates to HelpText to TS update HelpText props * form text field * Removing some unused example code --------- Co-authored-by: taeslee <64485716+taeslee@users.noreply.github.com> Co-authored-by: georgewrmarshall <george.marshall@consensys.net>
78 lines
3.2 KiB
TypeScript
78 lines
3.2 KiB
TypeScript
/* 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(<HelpText>help text</HelpText>);
|
|
expect(getByText('help text')).toBeDefined();
|
|
expect(getByText('help text')).toHaveClass('mm-help-text');
|
|
});
|
|
it('should match snapshot', () => {
|
|
const { container } = render(<HelpText>help text</HelpText>);
|
|
expect(container).toMatchSnapshot();
|
|
});
|
|
it('should render with and additional className', () => {
|
|
const { getByText } = render(
|
|
<HelpText className="test-class">help text</HelpText>,
|
|
);
|
|
expect(getByText('help text')).toHaveClass('mm-help-text test-class');
|
|
});
|
|
it('should render with react nodes inside the HelpText', () => {
|
|
const { getByText, getByTestId } = render(
|
|
<HelpText>
|
|
help text <Icon name={IconName.Warning} data-testid="icon" as="span" />
|
|
</HelpText>,
|
|
);
|
|
expect(getByText('help text')).toBeDefined();
|
|
expect(getByTestId('icon')).toBeDefined();
|
|
});
|
|
it('should render with severities', () => {
|
|
const { getByText } = render(
|
|
<>
|
|
<HelpText severity={HelpTextSeverity.Danger}>error</HelpText>
|
|
<HelpText severity={HelpTextSeverity.Success}>success</HelpText>
|
|
<HelpText severity={HelpTextSeverity.Warning}>warning</HelpText>
|
|
<HelpText severity={HelpTextSeverity.Info}>info</HelpText>
|
|
</>,
|
|
);
|
|
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(
|
|
<>
|
|
<HelpText>default</HelpText>
|
|
<HelpText color={TextColor.textDefault}>text default</HelpText>
|
|
<HelpText color={TextColor.textAlternative}>text alternative</HelpText>
|
|
<HelpText color={TextColor.textMuted}>text muted</HelpText>
|
|
</>,
|
|
);
|
|
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(
|
|
<>
|
|
<HelpText>help text as p</HelpText>
|
|
<HelpText data-testid="help-text-div">
|
|
<span>help text as div</span> <Icon name={IconName.Warning} />
|
|
</HelpText>
|
|
</>,
|
|
);
|
|
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');
|
|
});
|
|
});
|