blob: 2a05204b974e26192ed7c1b1c50fbc7b4af8846c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { describe, it } from '@jest/globals';
import { render } from '../../../../tests/utils';
import { CommentsList } from './comments-list';
import { comments, saveComment } from './comments-list.fixture';
describe('CommentsList', () => {
it('renders a comments list', () => {
render(
<CommentsList comments={comments} depth={1} onSubmit={saveComment} />
);
});
});
|