From 55fb920baa9792266be1a6b981f954c622c1eaf9 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Thu, 22 Apr 2021 23:02:02 +0200 Subject: Add tests for header Also patches up the leaky abstraction on the actions --- src/components/header/header.test.js | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 src/components/header/header.test.js (limited to 'src/components/header/header.test.js') diff --git a/src/components/header/header.test.js b/src/components/header/header.test.js new file mode 100644 index 0000000..7d57265 --- /dev/null +++ b/src/components/header/header.test.js @@ -0,0 +1,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(); + }); +}); -- cgit