diff options
Diffstat (limited to 'src/components/organisms/layout/comments-list.test.tsx')
| -rw-r--r-- | src/components/organisms/layout/comments-list.test.tsx | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/components/organisms/layout/comments-list.test.tsx b/src/components/organisms/layout/comments-list.test.tsx index 542b1df..e135ec9 100644 --- a/src/components/organisms/layout/comments-list.test.tsx +++ b/src/components/organisms/layout/comments-list.test.tsx @@ -57,10 +57,14 @@ const comments: Comment[] = [ }, ]; +const saveComment = async () => { + /** Do nothing. */ +}; + describe('CommentsList', () => { it('renders a comments list', () => { render( - <CommentsList comments={comments} depth={1} saveComment={() => null} /> + <CommentsList comments={comments} depth={1} saveComment={saveComment} /> ); }); }); |
