]>
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 RBR |
8 | import '$lib/i18n'; |
9 | import { enableTopicActions } from '$lib/stores/actions'; | |
55fb920b | 10 | |
a7cf03c1 | 11 | jest.mock('$lib/config/config.ts'); |
73973eda | 12 | |
55fb920b RBR |
13 | import Header from './header.svelte'; |
14 | ||
15 | describe('Header component', () => { | |
16 | ||
17 | test('Should not display topic if action is not set', () => { | |
18 | ||
19 | const results = render(Header); | |
20 | ||
21 | expect(results.queryByTitle('Reply')) | |
22 | .toBe(null); | |
23 | }); | |
24 | ||
25 | test('Should display topic if action is set', () => { | |
26 | ||
27 | enableTopicActions('d138d6d8-e669-42e7-995d-20a7fcc176f5'); | |
28 | const results = render(Header); | |
29 | ||
30 | expect(results.getByTitle('Reply')) | |
31 | .toBeVisible(); | |
32 | }); | |
33 | }); |