A Metamask fork with Infura removed and default networks editable
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ciphermask/ui/components/app/dropdowns/dropdown.test.js

35 lines
904 B

import React from 'react';
import sinon from 'sinon';
import { shallow } from 'enzyme';
import { DropdownMenuItem } from './dropdown';
6 years ago
describe('Dropdown', () => {
let wrapper;
const onClickSpy = sinon.spy();
const closeMenuSpy = sinon.spy();
6 years ago
beforeEach(() => {
6 years ago
wrapper = shallow(
<DropdownMenuItem
onClick={onClickSpy}
5 years ago
style={{ test: 'style' }}
closeMenu={closeMenuSpy}
/>,
);
});
6 years ago
it('renders li with dropdown-menu-item class', () => {
expect(wrapper.find('li.dropdown-menu-item')).toHaveLength(1);
});
6 years ago
it('adds style based on props passed', () => {
expect(wrapper.prop('style').test).toStrictEqual('style');
});
6 years ago
it('simulates click event and calls onClick and closeMenu', () => {
wrapper.prop('onClick')();
expect(onClickSpy.callCount).toStrictEqual(1);
expect(closeMenuSpy.callCount).toStrictEqual(1);
});
});