2016-12-14 15:44:38 +08:00
|
|
|
import React from 'react';
|
2017-02-16 14:03:05 +08:00
|
|
|
import { render, mount } from 'enzyme';
|
2016-12-14 15:44:38 +08:00
|
|
|
import { renderToJson } from 'enzyme-to-json';
|
|
|
|
import Button from '..';
|
|
|
|
|
|
|
|
describe('Button', () => {
|
|
|
|
it('renders correctly', () => {
|
|
|
|
const wrapper = render(
|
|
|
|
<Button>Follow</Button>
|
|
|
|
);
|
|
|
|
expect(renderToJson(wrapper)).toMatchSnapshot();
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders Chinese characters correctly', () => {
|
|
|
|
const wrapper = render(
|
|
|
|
<Button>按钮</Button>
|
|
|
|
);
|
|
|
|
expect(renderToJson(wrapper)).toMatchSnapshot();
|
|
|
|
});
|
2017-02-16 14:03:05 +08:00
|
|
|
|
|
|
|
it('have static perperty for type detecting', () => {
|
|
|
|
const wrapper = mount(
|
|
|
|
<Button>Button Text</Button>
|
|
|
|
);
|
|
|
|
// eslint-disable-next-line
|
|
|
|
expect(wrapper.type().__ANT_BUTTON).toBe(true);
|
|
|
|
});
|
2016-12-14 15:44:38 +08:00
|
|
|
});
|