]>
Commit | Line | Data |
---|---|---|
a7cf03c1 RBR |
1 | /** |
2 | * @jest-environment jsdom | |
3 | */ | |
4 | ||
55fb920b RBR |
5 | import '@testing-library/jest-dom/extend-expect'; |
6 | ||
7 | import { render } from '@testing-library/svelte'; | |
a7cf03c1 | 8 | import '$lib/i18n'; |
55fb920b RBR |
9 | |
10 | import Topic from './topic.svelte'; | |
11 | ||
55fb920b | 12 | describe('Topic Actions component', () => { |
cac85db0 RBR |
13 | test('Should link to reply page', () => { |
14 | const results = render(Topic, { | |
15 | props: { | |
16 | actions: { | |
17 | id: '8ebaa211-fd9b-423a-8b4f-b57622007fde' | |
18 | } | |
19 | } | |
20 | }); | |
21 | ||
22 | expect(results.getByTitle('Reply').closest('a')).toHaveAttribute( | |
23 | 'href', | |
24 | '/reply/8ebaa211-fd9b-423a-8b4f-b57622007fde' | |
25 | ); | |
26 | }); | |
55fb920b | 27 | }); |