import { describe, it } from '@jest/globals'; import { render } from '../../../../tests/utils'; import { saveComment } from './comment.fixture'; import { CommentsList } from './comments-list'; import { comments } from './comments-list.fixture'; describe('CommentsList', () => { it('renders a comments list', () => { render( ); }); });