From c347190a4307c172d15dac156da86567098035f6 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Tue, 24 May 2022 16:18:02 +0200 Subject: test: fix theme toggle and comment tests --- src/components/organisms/layout/comment.test.tsx | 2 +- src/components/organisms/layout/comment.tsx | 27 ++---------------------- 2 files changed, 3 insertions(+), 26 deletions(-) (limited to 'src/components/organisms/layout') diff --git a/src/components/organisms/layout/comment.test.tsx b/src/components/organisms/layout/comment.test.tsx index 490a52b..66003d1 100644 --- a/src/components/organisms/layout/comment.test.tsx +++ b/src/components/organisms/layout/comment.test.tsx @@ -12,7 +12,7 @@ describe('Comment', () => { it('renders an avatar', () => { render(); expect( - screen.getByRole('img', { name: 'Your name avatar' }) + screen.getByRole('img', { name: author.avatar.alt }) ).toBeInTheDocument(); }); diff --git a/src/components/organisms/layout/comment.tsx b/src/components/organisms/layout/comment.tsx index 1dc2c71..f62f95c 100644 --- a/src/components/organisms/layout/comment.tsx +++ b/src/components/organisms/layout/comment.tsx @@ -11,21 +11,6 @@ import { type Comment as CommentSchema, type WithContext } from 'schema-dts'; import CommentForm, { type CommentFormProps } from '../forms/comment-form'; import styles from './comment.module.scss'; -export type CommentAuthor = { - /** - * The author avatar. - */ - avatar: string; - /** - * The author name. - */ - name: string; - /** - * The author website. - */ - url?: string; -}; - export type CommentProps = Pick< CommentType, 'approved' | 'content' | 'id' | 'meta' | 'parentId' @@ -72,14 +57,6 @@ const Comment: FC = ({ const { author, date } = meta; const [publicationDate, publicationTime] = date.split(' '); - const avatarAltText = intl.formatMessage( - { - defaultMessage: '{author} avatar', - description: 'Comment: avatar alternative text', - id: 'T/hUiO', - }, - { author: author.name } - ); const buttonLabel = isReplying ? intl.formatMessage({ defaultMessage: 'Cancel reply', @@ -137,8 +114,8 @@ const Comment: FC = ({ {author.avatar && (