blob: 6be251673a8ecff98a0bdfa9d4c495baff4129bd (
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
|
import '@testing-library/jest-dom/extend-expect';
import { render } from '@testing-library/svelte';
import '$/config/i18n';
import { enableTopicActions } from '$/stores/actions';
jest.mock('$/config/config.js');
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();
});
});
|