]>
Commit | Line | Data |
---|---|---|
1 | /** | |
2 | * @jest-environment jsdom | |
3 | */ | |
4 | ||
5 | import '@testing-library/jest-dom/extend-expect'; | |
6 | ||
7 | import { render } from '@testing-library/svelte'; | |
8 | import '$lib/i18n'; | |
9 | import { enableTopicActions } from '$lib/stores/actions'; | |
10 | ||
11 | jest.mock('$lib/config/config.ts'); | |
12 | ||
13 | import Header from './header.svelte'; | |
14 | ||
15 | describe('Header component', () => { | |
16 | test('Should not display topic if action is not set', () => { | |
17 | const results = render(Header); | |
18 | ||
19 | expect(results.queryByTitle('Reply')).toBe(null); | |
20 | }); | |
21 | ||
22 | test('Should display topic if action is set', () => { | |
23 | enableTopicActions('d138d6d8-e669-42e7-995d-20a7fcc176f5'); | |
24 | const results = render(Header); | |
25 | ||
26 | expect(results.getByTitle('Reply')).toBeVisible(); | |
27 | }); | |
28 | }); |