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