aboutsummaryrefslogtreecommitdiff
path: root/src/lib/components/header/header.test.ts
blob: 4107b2dfe1e3471b0e576bbe15911c2eae1bec2e (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
29
30
31
32
33
/**
 * @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();
  });
});