mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-02 14:15:06 +01:00
4fcbaae32f
* added housekeeping for avatar network * fixed alt * updated story in Readme * fixed indentation and added network src * updated SIZES for avatar network * updated snapshot * updated docs and props * updated name of avatar * removed comments * updated avatar network component * updated readme * updated story for badge * added constants to the root
91 lines
2.5 KiB
JavaScript
91 lines
2.5 KiB
JavaScript
/* eslint-disable jest/require-top-level-describe */
|
|
import { render } from '@testing-library/react';
|
|
import React from 'react';
|
|
import { AvatarNetwork } from '../avatar-network/avatar-network';
|
|
import { COLORS } from '../../../helpers/constants/design-system';
|
|
import { AvatarWithBadge } from './avatar-with-badge';
|
|
import { BADGE_POSITIONS } from './avatar-with-badge.constants';
|
|
|
|
describe('AvatarWithBadge', () => {
|
|
it('should render correctly', () => {
|
|
const { getByTestId } = render(
|
|
<AvatarWithBadge
|
|
badgePosition={BADGE_POSITIONS.BOTTOM}
|
|
data-testid="avatar-with-badge"
|
|
badge={
|
|
<AvatarNetwork
|
|
name="Arbitrum One"
|
|
src="./images/arbitrum.svg"
|
|
data-testid="badge"
|
|
/>
|
|
}
|
|
/>,
|
|
);
|
|
expect(getByTestId('avatar-with-badge')).toBeDefined();
|
|
expect(getByTestId('badge')).toBeDefined();
|
|
});
|
|
|
|
it('should render badge network with bottom right position correctly', () => {
|
|
const { container } = render(
|
|
<AvatarWithBadge
|
|
data-testid="avatar-with-badge"
|
|
badgePosition={BADGE_POSITIONS.BOTTOM}
|
|
badge={
|
|
<AvatarNetwork
|
|
name="Arbitrum One"
|
|
src="./images/arbitrum.svg"
|
|
data-testid="badge"
|
|
/>
|
|
}
|
|
/>,
|
|
);
|
|
|
|
expect(
|
|
container.getElementsByClassName(
|
|
'avatar-with-badge__badge-wrapper--position-bottom',
|
|
),
|
|
).toHaveLength(1);
|
|
});
|
|
|
|
it('should render badge network with top right position correctly', () => {
|
|
const { container } = render(
|
|
<AvatarWithBadge
|
|
data-testid="avatar-with-badge"
|
|
badgePosition={BADGE_POSITIONS.TOP}
|
|
badge={
|
|
<AvatarNetwork
|
|
name="Arbitrum One"
|
|
src="./images/arbitrum.svg"
|
|
data-testid="badge"
|
|
/>
|
|
}
|
|
/>,
|
|
);
|
|
|
|
expect(
|
|
container.getElementsByClassName(
|
|
'avatar-with-badge__badge-wrapper--position-top',
|
|
),
|
|
).toHaveLength(1);
|
|
});
|
|
it('should render badge network with badgeWrapperProps', () => {
|
|
const container = (
|
|
<AvatarWithBadge
|
|
data-testid="avatar-with-badge"
|
|
badgePosition={BADGE_POSITIONS.TOP}
|
|
badgeWrapperProps={{ borderColor: COLORS.ERROR_DEFAULT }}
|
|
badge={
|
|
<AvatarNetwork
|
|
name="Arbitrum One"
|
|
src="./images/arbitrum.svg"
|
|
data-testid="badge"
|
|
/>
|
|
}
|
|
/>
|
|
);
|
|
expect(container.props.badgeWrapperProps.borderColor).toStrictEqual(
|
|
'error-default',
|
|
);
|
|
});
|
|
});
|