aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/layout/section.test.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2023-09-27 15:40:16 +0200
committerArmand Philippot <git@armandphilippot.com>2023-10-24 12:25:00 +0200
commitba793e043e4d8515b1a9ea490ee2c5f92b1fd6c2 (patch)
treef7240a681fb3ee8c886a0c9ec3944082ba2d89bd /src/components/atoms/layout/section.test.tsx
parent388e687857345c85ee550cd5da472675e05a6ff5 (diff)
refactor(components): rewrite Section component
* Make it compliant with ESlint rules * Remove mandatory heading, it now depends on the consumer * Change defaults for hasBorder and variant
Diffstat (limited to 'src/components/atoms/layout/section.test.tsx')
-rw-r--r--src/components/atoms/layout/section.test.tsx18
1 files changed, 0 insertions, 18 deletions
diff --git a/src/components/atoms/layout/section.test.tsx b/src/components/atoms/layout/section.test.tsx
deleted file mode 100644
index 6a2805d..0000000
--- a/src/components/atoms/layout/section.test.tsx
+++ /dev/null
@@ -1,18 +0,0 @@
-import { describe, expect, it } from '@jest/globals';
-import { render, screen } from '../../../../tests/utils';
-import { Section } from './section';
-
-const title = 'Section title';
-const content = 'Section content.';
-
-describe('Section', () => {
- it('renders a title (h2)', () => {
- render(<Section title={title} content={content} />);
- expect(screen.getByRole('heading', { level: 2 })).toHaveTextContent(title);
- });
-
- it('renders a content', () => {
- render(<Section title={title} content={content} />);
- expect(screen.getByText(content)).toBeInTheDocument();
- });
-});