aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/organisms/layout/comment.test.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2023-10-02 17:01:57 +0200
committerArmand Philippot <git@armandphilippot.com>2023-11-11 18:14:41 +0100
commit36890cfafeba6e30782df1260d7f9e678c7da4bf (patch)
tree1abe20cf36d60e048b75828dd5516529e504ddd8 /src/components/organisms/layout/comment.test.tsx
parent4f768afe543bbf9e1857c41d03804f8e37ab3512 (diff)
refactor(components): rewrite DescriptionList component
* add a `spacing` prop * replace `layout` prop with `isInline` prop * remove `items` prop (and classNames props) in favor of new components: Description, Group, Term * remove `withSeparator` prop (CSS content is announced by screen readers and Firefox/Safari have no support for alternative text so the consumer should add itself an element with `aria-hidden` if it need a separator) Be aware, Meta component and its consumers can be visually broken, they should be refactored before using them in production.
Diffstat (limited to 'src/components/organisms/layout/comment.test.tsx')
-rw-r--r--src/components/organisms/layout/comment.test.tsx28
1 files changed, 15 insertions, 13 deletions
diff --git a/src/components/organisms/layout/comment.test.tsx b/src/components/organisms/layout/comment.test.tsx
index 1aa9e4a..b64f84a 100644
--- a/src/components/organisms/layout/comment.test.tsx
+++ b/src/components/organisms/layout/comment.test.tsx
@@ -1,6 +1,6 @@
import { describe, expect, it } from '@jest/globals';
-import { render, screen } from '../../../../tests/utils';
-import { Comment } from './comment';
+import { render, screen as rtlScreen } from '../../../../tests/utils';
+import { UserComment } from './comment';
import {
author,
data,
@@ -9,40 +9,42 @@ import {
id,
} from './comment.fixture';
-describe('Comment', () => {
+describe('UserComment', () => {
it('renders an avatar', () => {
- render(<Comment canReply={true} {...data} />);
+ render(<UserComment canReply={true} {...data} />);
expect(
- screen.getByRole('img', { name: author.avatar.alt })
+ rtlScreen.getByRole('img', { name: author.avatar.alt })
).toBeInTheDocument();
});
it('renders the author website url', () => {
- render(<Comment canReply={true} {...data} />);
- expect(screen.getByRole('link', { name: author.name })).toHaveAttribute(
+ render(<UserComment canReply={true} {...data} />);
+ expect(rtlScreen.getByRole('link', { name: author.name })).toHaveAttribute(
'href',
author.website
);
});
it('renders a permalink to the comment', () => {
- render(<Comment canReply={true} {...data} />);
+ render(<UserComment canReply={true} {...data} />);
expect(
- screen.getByRole('link', {
+ rtlScreen.getByRole('link', {
name: `${formattedDate} at ${formattedTime}`,
})
).toHaveAttribute('href', `#comment-${id}`);
});
it('renders a reply button', () => {
- render(<Comment canReply={true} {...data} />);
- expect(screen.getByRole('button', { name: 'Reply' })).toBeInTheDocument();
+ render(<UserComment canReply={true} {...data} />);
+ expect(
+ rtlScreen.getByRole('button', { name: 'Reply' })
+ ).toBeInTheDocument();
});
it('does not render a reply button', () => {
- render(<Comment canReply={false} {...data} />);
+ render(<UserComment canReply={false} {...data} />);
expect(
- screen.queryByRole('button', { name: 'Reply' })
+ rtlScreen.queryByRole('button', { name: 'Reply' })
).not.toBeInTheDocument();
});
});