aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/organisms/layout/comments-list.test.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/organisms/layout/comments-list.test.tsx')
-rw-r--r--src/components/organisms/layout/comments-list.test.tsx12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/components/organisms/layout/comments-list.test.tsx b/src/components/organisms/layout/comments-list.test.tsx
deleted file mode 100644
index 2a05204..0000000
--- a/src/components/organisms/layout/comments-list.test.tsx
+++ /dev/null
@@ -1,12 +0,0 @@
-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} />
- );
- });
-});