import React from 'react';
import { mount } from 'enzyme';
import Dropdown from '..';
import Menu from '../../menu';
describe('DropdownButton', () => {
it('pass appropriate props to Dropdown', () => {
const props = {
align: {
offset: [10, 20],
},
overlay: (
),
disabled: false,
trigger: ['hover'],
visible: true,
onVisibleChange: () => {},
};
const wrapper = mount();
const dropdownProps = wrapper.find(Dropdown).props();
Object.keys(props).forEach(key => {
expect(dropdownProps[key]).toBe(props[key]); // eslint-disable-line
});
});
it("don't pass visible to Dropdown if it's not exits", () => {
const menu = (
);
const wrapper = mount();
const dropdownProps = wrapper.find(Dropdown).props();
expect('visible' in dropdownProps).toBe(false);
});
it('should support href like Button', () => {
const menu = (
);
const wrapper = mount();
expect(wrapper.render()).toMatchSnapshot();
});
});