shlink-web-client/test/utils/CopyToClipboardIcon.test.tsx

31 lines
904 B
TypeScript
Raw Normal View History

import { render } from '@testing-library/react';
import userEvent from '@testing-library/user-event';
2021-01-24 20:06:11 +03:00
import { CopyToClipboardIcon } from '../../src/utils/CopyToClipboardIcon';
describe('<CopyToClipboardIcon />', () => {
const onCopy = jest.fn();
const setUp = (text = 'foo') => ({
user: userEvent.setup(),
...render(<CopyToClipboardIcon text={text} onCopy={onCopy} />),
2021-01-24 20:06:11 +03:00
});
afterEach(jest.clearAllMocks);
2021-01-24 20:06:11 +03:00
2021-03-06 19:25:09 +03:00
it('wraps expected components', () => {
const { container } = setUp();
expect(container).toMatchSnapshot();
});
it.each([
['text'],
['bar'],
['baz'],
])('copies content to clipboard when clicked', async (text) => {
const { user, container } = setUp(text);
2021-01-24 20:06:11 +03:00
expect(onCopy).not.toHaveBeenCalled();
container.firstElementChild && await user.click(container.firstElementChild);
expect(onCopy).toHaveBeenCalledWith(text, false);
2021-01-24 20:06:11 +03:00
});
});