From 34e216546151eaf8a0a3cbb0bc8b65dae4c63bf2 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Mon, 23 May 2022 14:07:02 +0200 Subject: refactor: reduce the number of data transformation --- src/components/organisms/layout/comment.test.tsx | 39 +++++++----------------- 1 file changed, 11 insertions(+), 28 deletions(-) (limited to 'src/components/organisms/layout/comment.test.tsx') diff --git a/src/components/organisms/layout/comment.test.tsx b/src/components/organisms/layout/comment.test.tsx index 02a51dc..490a52b 100644 --- a/src/components/organisms/layout/comment.test.tsx +++ b/src/components/organisms/layout/comment.test.tsx @@ -1,48 +1,31 @@ import { render, screen } from '@test-utils'; -import { getFormattedDate, getFormattedTime } from '@utils/helpers/dates'; import Comment from './comment'; - -const author = { - avatar: 'http://placeimg.com/640/480', - name: 'Your name', - url: 'https://www.example.test/', -}; -const content = - 'Harum aut cumque iure fugit neque sequi cupiditate repudiandae laudantium. Ratione aut assumenda qui illum voluptas accusamus quis officiis exercitationem. Consectetur est harum eius perspiciatis officiis nihil. Aut corporis minima debitis adipisci possimus debitis et.'; -const publication = '2021-04-03 23:04:24'; -const id = 5; -const saveComment = async () => { - /** Do nothing. */ -}; -const data = { +import { author, - content, + data, + formattedDate, + formattedTime, id, - publication, - saveComment, -}; - -const formattedDate = getFormattedDate(publication); -const formattedTime = getFormattedTime(publication); +} from './comment.fixture'; describe('Comment', () => { it('renders an avatar', () => { - render(); + render(); expect( screen.getByRole('img', { name: 'Your name avatar' }) ).toBeInTheDocument(); }); it('renders the author website url', () => { - render(); + render(); expect(screen.getByRole('link', { name: author.name })).toHaveAttribute( 'href', - author.url + author.website ); }); it('renders a permalink to the comment', () => { - render(); + render(); expect( screen.getByRole('link', { name: `${formattedDate} at ${formattedTime}`, @@ -51,12 +34,12 @@ describe('Comment', () => { }); it('renders a reply button', () => { - render(); + render(); expect(screen.getByRole('button', { name: 'Reply' })).toBeInTheDocument(); }); it('does not render a reply button', () => { - render(); + render(); expect( screen.queryByRole('button', { name: 'Reply' }) ).not.toBeInTheDocument(); -- cgit v1.2.3