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.
21 lines
500 B
21 lines
500 B
8 years ago
|
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();
|
||
|
});
|
||
|
});
|