From ec54c7692d5588addcd7563626df381aa86d5d79 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Wed, 20 Apr 2022 19:27:46 +0200 Subject: chore: add a Sidebar component --- src/components/atoms/layout/sidebar.test.tsx | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 src/components/atoms/layout/sidebar.test.tsx (limited to 'src/components/atoms/layout/sidebar.test.tsx') diff --git a/src/components/atoms/layout/sidebar.test.tsx b/src/components/atoms/layout/sidebar.test.tsx new file mode 100644 index 0000000..4c9459d --- /dev/null +++ b/src/components/atoms/layout/sidebar.test.tsx @@ -0,0 +1,11 @@ +import { render, screen } from '@test-utils'; +import Sidebar from './sidebar'; + +const children = 'A widget'; + +describe('Sidebar', () => { + it('renders an aside element', () => { + render({children}); + expect(screen.getByRole('complementary')).toHaveTextContent(children); + }); +}); -- cgit v1.2.3