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.
|
|
|
import React from 'react';
|
|
|
|
import { render, mount } from 'enzyme';
|
|
|
|
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();
|
|
|
|
});
|
|
|
|
|
|
|
|
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);
|
|
|
|
});
|
|
|
|
});
|