mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-26 20:20:00 +08:00
21 lines
500 B
JavaScript
21 lines
500 B
JavaScript
import React from 'react';
|
|
import { render } 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();
|
|
});
|
|
});
|