diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2022-05-01 01:02:58 +0200 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2022-05-01 01:02:58 +0200 |
| commit | cac85db02ff00732cf75d473dc3411332f33d845 (patch) | |
| tree | 5f244968a905eb3888434b3f60cbf05d2b652207 /src/lib/components/header/header.test.ts | |
| parent | a7cf03c192470cbab13edeb1aec99e0c66dede10 (diff) | |
Apply formatting
Diffstat (limited to 'src/lib/components/header/header.test.ts')
| -rw-r--r-- | src/lib/components/header/header.test.ts | 23 |
1 files changed, 9 insertions, 14 deletions
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(); + }); }); |