X-Git-Url: https://git.r.bdr.sh/rbdr/forum/blobdiff_plain/a7cf03c192470cbab13edeb1aec99e0c66dede10..HEAD:/src/lib/components/header/header.test.ts diff --git a/src/lib/components/header/header.test.ts b/src/lib/components/header/header.test.ts index 4107b2d..d7a7801 100644 --- a/src/lib/components/header/header.test.ts +++ b/src/lib/components/header/header.test.ts @@ -13,21 +13,16 @@ 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); - test('Should not display topic if action is not set', () => { + expect(results.queryByTitle('Reply')).toBe(null); + }); - const results = render(Header); + test('Should display topic if action is set', () => { + enableTopicActions('d138d6d8-e669-42e7-995d-20a7fcc176f5'); + 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(); - }); + expect(results.getByTitle('Reply')).toBeVisible(); + }); });