mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-22 18:00:18 +01:00
f2514c88cf
* added avatar network component * reset showFallback if networkUrl changes * updated changed to avatar network * updated test cases for avatar network * updated story url in README * added avatar network class Name * updated readme for AvatarNetwork * updated avatar network * updated text changes to avatar Network and Avatar Token component * updated space between useState and useEffect * updated scss files in alphabetic order
51 lines
1.6 KiB
JavaScript
51 lines
1.6 KiB
JavaScript
/* eslint-disable jest/require-top-level-describe */
|
|
import { render, screen } from '@testing-library/react';
|
|
import React from 'react';
|
|
|
|
import { AvatarToken } from './avatar-token';
|
|
|
|
describe('AvatarToken', () => {
|
|
const args = {
|
|
tokenName: 'ast',
|
|
tokenImageUrl: './AST.png',
|
|
showHalo: false,
|
|
};
|
|
|
|
it('should render correctly', () => {
|
|
const { getByTestId } = render(<AvatarToken data-testid="avatar-token" />);
|
|
expect(getByTestId('avatar-token')).toBeDefined();
|
|
});
|
|
|
|
it('should render image Avatar', () => {
|
|
render(<AvatarToken {...args} data-testid="avatar-token" />);
|
|
const image = screen.getByRole('img');
|
|
expect(image).toBeDefined();
|
|
expect(image).toHaveAttribute('src', args.tokenImageUrl);
|
|
});
|
|
|
|
it('should render the first letter of the tokenName prop if no tokenImageUrl is provided', () => {
|
|
const { getByText } = render(
|
|
<AvatarToken {...args} data-testid="avatar-token" tokenImageUrl="" />,
|
|
);
|
|
expect(getByText('a')).toBeDefined();
|
|
});
|
|
|
|
it('should render halo effect if showHalo is true and image url is there', () => {
|
|
render(<AvatarToken {...args} data-testid="avatar-token" showHalo />);
|
|
const image = screen.getAllByRole('img', { hidden: true });
|
|
expect(image[1]).toHaveClass('avatar-token__token-image--size-reduced');
|
|
});
|
|
|
|
it('should render the first letter of the tokenName prop when showHalo is true and no image url is provided', () => {
|
|
const { getByText } = render(
|
|
<AvatarToken
|
|
{...args}
|
|
tokenImageUrl=""
|
|
data-testid="avatar-token"
|
|
showHalo
|
|
/>,
|
|
);
|
|
expect(getByText('a')).toBeDefined();
|
|
});
|
|
});
|