1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
import { describe, expect, it } from '@jest/globals';
import { render, screen as rtlScreen } from '../../../../tests/utils';
import { UserComment } from './comment';
import { author, data, id } from './comment.fixture';
describe('UserComment', () => {
it('renders an avatar', () => {
render(<UserComment canReply={true} {...data} />);
expect(
rtlScreen.getByRole('img', { name: author.avatar.alt })
).toBeInTheDocument();
});
it('renders the author website url', () => {
render(<UserComment canReply={true} {...data} />);
expect(rtlScreen.getByRole('link', { name: author.name })).toHaveAttribute(
'href',
author.website
);
});
it('renders a permalink to the comment', () => {
render(<UserComment canReply={true} {...data} />);
expect(
rtlScreen.getByRole('link', {
name: /\sat\s/,
})
).toHaveAttribute('href', `#comment-${id}`);
});
it('renders a reply button', () => {
render(<UserComment canReply={true} {...data} />);
expect(
rtlScreen.getByRole('button', { name: 'Reply' })
).toBeInTheDocument();
});
it('does not render a reply button', () => {
render(<UserComment canReply={false} {...data} />);
expect(
rtlScreen.queryByRole('button', { name: 'Reply' })
).not.toBeInTheDocument();
});
});
|