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.
28 lines
811 B
28 lines
811 B
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
import Comment from '../index';
|
|
import mountTest from '../../../tests/shared/mountTest';
|
|
import rtlTest from '../../../tests/shared/rtlTest';
|
|
|
|
describe('Comment', () => {
|
|
mountTest(Comment);
|
|
rtlTest(Comment);
|
|
|
|
it('should support empty actions', () => {
|
|
const wrapper = mount(
|
|
<Comment
|
|
actions={[]}
|
|
author={<a>Han Solo</a>}
|
|
content={
|
|
<p>
|
|
We supply a series of design principles, practical patterns and high quality design
|
|
resources (Sketch and Axure), to help people create their product prototypes beautifully
|
|
and efficiently.
|
|
</p>
|
|
}
|
|
datetime="YYYY-MM-DD HH:mm:ss"
|
|
/>,
|
|
);
|
|
expect(wrapper.render()).toMatchSnapshot();
|
|
});
|
|
});
|
|
|