mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 17:40:23 +03:00
26 lines
828 B
TypeScript
26 lines
828 B
TypeScript
import { CopyToClipboardIcon } from '../../src/utils/CopyToClipboardIcon';
|
|
import { renderWithEvents } from '../__helpers__/setUpTest';
|
|
|
|
describe('<CopyToClipboardIcon />', () => {
|
|
const onCopy = jest.fn();
|
|
const setUp = (text = 'foo') => renderWithEvents(<CopyToClipboardIcon text={text} onCopy={onCopy} />);
|
|
|
|
afterEach(jest.clearAllMocks);
|
|
|
|
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);
|
|
|
|
expect(onCopy).not.toHaveBeenCalled();
|
|
container.firstElementChild && await user.click(container.firstElementChild);
|
|
expect(onCopy).toHaveBeenCalledWith(text, false);
|
|
});
|
|
});
|