A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ciphermask/ui/components/component-library/avatar-account/avatar-account.test.js

24 lines
794 B

/* eslint-disable jest/require-top-level-describe */
import { render } from '@testing-library/react';
import React from 'react';
import { AvatarAccount } from './avatar-account';
import 'jest-canvas-mock';
describe('AvatarAccount', () => {
const args = {
address: '0x5CfE73b6021E818B776b421B1c4Db2474086a7e1',
};
it('should render Jazzicon correctly', () => {
const { getByTestId } = render(
<AvatarAccount data-testid="avatar-account" type="Jazzicon" {...args} />,
);
expect(getByTestId('avatar-account')).toBeDefined();
});
it('should render Blockie correctly', () => {
const { getByTestId } = render(
<AvatarAccount data-testid="avatar-account" type="Blockie" {...args} />,
);
expect(getByTestId('avatar-account')).toBeDefined();
});
});