mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2024-12-23 17:40:23 +03:00
17 lines
776 B
TypeScript
17 lines
776 B
TypeScript
import { shallow } from 'enzyme';
|
|
import { ShortUrlFormCheckboxGroup } from '../../../src/short-urls/helpers/ShortUrlFormCheckboxGroup';
|
|
import { Checkbox } from '../../../src/utils/Checkbox';
|
|
import { InfoTooltip } from '../../../src/utils/InfoTooltip';
|
|
|
|
describe('<ShortUrlFormCheckboxGroup />', () => {
|
|
it.each([
|
|
[undefined, '', 0],
|
|
['This is the tooltip', 'me-2', 1],
|
|
])('renders tooltip only when provided', (infoTooltip, expectedClassName, expectedAmountOfTooltips) => {
|
|
const wrapper = shallow(<ShortUrlFormCheckboxGroup infoTooltip={infoTooltip} />);
|
|
const checkbox = wrapper.find(Checkbox);
|
|
|
|
expect(checkbox.prop('className')).toEqual(expectedClassName);
|
|
expect(wrapper.find(InfoTooltip)).toHaveLength(expectedAmountOfTooltips);
|
|
});
|
|
});
|