aboutsummaryrefslogtreecommitdiff
path: root/src/lib/components/header/header.test.ts
blob: d7a780163bc5866d66d9cfb3d6a5a3c2d17636f5 (plain)
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
/**
 * @jest-environment jsdom
 */

import '@testing-library/jest-dom/extend-expect';

import { render } from '@testing-library/svelte';
import '$lib/i18n';
import { enableTopicActions } from '$lib/stores/actions';

jest.mock('$lib/config/config.ts');

import Header from './header.svelte';

describe('Header component', () => {
	test('Should not display topic if action is not set', () => {
		const results = render(Header);

		expect(results.queryByTitle('Reply')).toBe(null);
	});

	test('Should display topic if action is set', () => {
		enableTopicActions('d138d6d8-e669-42e7-995d-20a7fcc176f5');
		const results = render(Header);

		expect(results.getByTitle('Reply')).toBeVisible();
	});
});