2019-01-03 16:00:55 +03:00
|
|
|
import React from 'react';
|
|
|
|
import { render, mount } from 'enzyme';
|
|
|
|
import { renderToJson } from 'enzyme-to-json';
|
|
|
|
import { Button } from '../src';
|
|
|
|
|
2019-01-10 21:51:14 +03:00
|
|
|
describe('Button', function() {
|
2019-01-03 16:00:55 +03:00
|
|
|
it('renders correctly', () => {
|
|
|
|
const wrapper = render(<Button>Text</Button>);
|
|
|
|
expect(renderToJson(wrapper)).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should handle the click event', () => {
|
|
|
|
const onClick = jest.fn();
|
|
|
|
const wrapper = mount(<Button onClick={onClick}>ClickMe</Button>);
|
|
|
|
|
|
|
|
wrapper.find('button').simulate('click');
|
|
|
|
expect(onClick).toBeCalled();
|
|
|
|
});
|
|
|
|
});
|