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