mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-26 12:29:06 +01:00
32 lines
1.0 KiB
JavaScript
32 lines
1.0 KiB
JavaScript
import React from 'react';
|
|
import { fireEvent, render } from '@testing-library/react';
|
|
import { AddressCopyButton } from '.';
|
|
|
|
const SAMPLE_ADDRESS = '0x0dcd5d886577d5081b0c52e242ef29e70be3e7bc';
|
|
|
|
describe('AccountListItem', () => {
|
|
it('renders the full address by default', () => {
|
|
render(<AddressCopyButton address={SAMPLE_ADDRESS} />);
|
|
expect(
|
|
document.querySelector('[data-testid="address-copy-button-text"]')
|
|
.textContent,
|
|
).toStrictEqual(SAMPLE_ADDRESS);
|
|
});
|
|
|
|
it('renders a shortened address when it should', () => {
|
|
render(<AddressCopyButton address={SAMPLE_ADDRESS} shorten />);
|
|
expect(
|
|
document.querySelector('[data-testid="address-copy-button-text"]')
|
|
.textContent,
|
|
).toStrictEqual('0x0dc...e7bc');
|
|
});
|
|
|
|
it('changes icon when clicked', () => {
|
|
render(<AddressCopyButton address={SAMPLE_ADDRESS} />);
|
|
fireEvent.click(document.querySelector('button'));
|
|
expect(document.querySelector('.mm-icon').style.maskImage).toContain(
|
|
'copy-success.svg',
|
|
);
|
|
});
|
|
});
|