From 4f1181581e177dd80a76165a0f930ef4577f9c6a Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Wed, 22 Nov 2023 19:07:25 +0100 Subject: refactor(components): integrate sectioned page template into Page * replace Section component by a generic one (other components should be able to use it) * add a PageSection component * add `hasSections` prop to Page component * remove sectioned-page template --- src/components/atoms/layout/section/section.test.tsx | 17 +---------------- 1 file changed, 1 insertion(+), 16 deletions(-) (limited to 'src/components/atoms/layout/section/section.test.tsx') diff --git a/src/components/atoms/layout/section/section.test.tsx b/src/components/atoms/layout/section/section.test.tsx index 85305c0..be4c324 100644 --- a/src/components/atoms/layout/section/section.test.tsx +++ b/src/components/atoms/layout/section/section.test.tsx @@ -5,23 +5,8 @@ import { Section } from './section'; const content = 'Section content.'; describe('Section', () => { - it('renders its body', () => { + it('renders its children', () => { render(
{content}
); expect(rtlScreen.getByText(content)).toBeInTheDocument(); }); - - it('renders a section with border', () => { - render(
{content}
); - expect(rtlScreen.getByText(content)).toHaveClass('wrapper--borders'); - }); - - it('renders a light section', () => { - render(
{content}
); - expect(rtlScreen.getByText(content)).toHaveClass('wrapper--light'); - }); - - it('renders a dark section', () => { - render(
{content}
); - expect(rtlScreen.getByText(content)).toHaveClass('wrapper--dark'); - }); }); -- cgit v1.2.3