From cac85db02ff00732cf75d473dc3411332f33d845 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Sun, 1 May 2022 01:02:58 +0200 Subject: Apply formatting --- src/lib/components/header/header.test.ts | 23 +++++++++-------------- 1 file changed, 9 insertions(+), 14 deletions(-) (limited to '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(); + }); }); -- cgit