1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-02 14:15:06 +01:00
metamask-extension/ui/components/component-library/avatar-account/avatar-account.test.js

24 lines
794 B
JavaScript
Raw Normal View History

/* 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();
});
});