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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
import { render, screen } from '@test-utils';
import Summary from './summary';
const cover = {
alt: 'A cover',
height: 480,
src: 'http://placeimg.com/640/480',
width: 640,
};
const excerpt =
'Perspiciatis quasi libero nemo non eligendi nam minima. Deleniti expedita tempore. Praesentium explicabo molestiae eaque consectetur vero. Quae nostrum quisquam similique. Ut hic est quas ut esse quisquam nobis.';
const meta = {
publication: { name: 'Published on:', value: 'April 11th 2022' },
readingTime: { name: 'Reading time:', value: '5 minutes' },
categories: {
name: 'Categories:',
value: [
<a key="cat-1" href="#">
Cat 1
</a>,
<a key="cat-2" href="#">
Cat 2
</a>,
],
},
comments: { name: 'Comments:', value: '1 comment' },
};
const title = 'Odio odit necessitatibus';
const url = '#';
describe('Summary', () => {
it('renders a title wrapped in a h2 element', () => {
render(
<Summary
excerpt={excerpt}
meta={meta}
title={title}
titleLevel={2}
url={url}
/>
);
expect(
screen.getByRole('heading', { level: 2, name: title })
).toBeInTheDocument();
});
it('renders an excerpt', () => {
render(<Summary excerpt={excerpt} meta={meta} title={title} url={url} />);
expect(screen.getByText(excerpt)).toBeInTheDocument();
});
it('renders a cover', () => {
render(
<Summary
cover={cover}
excerpt={excerpt}
meta={meta}
title={title}
url={url}
/>
);
expect(screen.getByRole('img', { name: cover.alt })).toBeInTheDocument();
});
it('renders a link to the full post', () => {
render(<Summary excerpt={excerpt} meta={meta} title={title} url={url} />);
expect(screen.getByRole('link', { name: title })).toBeInTheDocument();
});
it('renders a read more link', () => {
render(<Summary excerpt={excerpt} meta={meta} title={title} url={url} />);
expect(
screen.getByRole('link', { name: `Read more about ${title}` })
).toBeInTheDocument();
});
it('renders some meta', () => {
render(<Summary excerpt={excerpt} meta={meta} title={title} url={url} />);
expect(screen.getByText(meta.publication.name)).toBeInTheDocument();
});
});
|