aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/atoms/layout/section/section.test.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/atoms/layout/section/section.test.tsx')
-rw-r--r--src/components/atoms/layout/section/section.test.tsx27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/components/atoms/layout/section/section.test.tsx b/src/components/atoms/layout/section/section.test.tsx
new file mode 100644
index 0000000..85305c0
--- /dev/null
+++ b/src/components/atoms/layout/section/section.test.tsx
@@ -0,0 +1,27 @@
+import { describe, expect, it } from '@jest/globals';
+import { render, screen as rtlScreen } from '@testing-library/react';
+import { Section } from './section';
+
+const content = 'Section content.';
+
+describe('Section', () => {
+ it('renders its body', () => {
+ render(<Section>{content}</Section>);
+ expect(rtlScreen.getByText(content)).toBeInTheDocument();
+ });
+
+ it('renders a section with border', () => {
+ render(<Section hasBorder>{content}</Section>);
+ expect(rtlScreen.getByText(content)).toHaveClass('wrapper--borders');
+ });
+
+ it('renders a light section', () => {
+ render(<Section variant="light">{content}</Section>);
+ expect(rtlScreen.getByText(content)).toHaveClass('wrapper--light');
+ });
+
+ it('renders a dark section', () => {
+ render(<Section variant="dark">{content}</Section>);
+ expect(rtlScreen.getByText(content)).toHaveClass('wrapper--dark');
+ });
+});