aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/organisms/layout/header.test.tsx
diff options
context:
space:
mode:
authorArmand Philippot <git@armandphilippot.com>2022-04-22 18:07:26 +0200
committerArmand Philippot <git@armandphilippot.com>2022-04-22 18:08:15 +0200
commit52c185d0f23504fc6410cf36285968eff9e7b21f (patch)
tree3077ac11f78e9062193e5fe64a2650f246788d71 /src/components/organisms/layout/header.test.tsx
parentcb6a54e54f2f013e06049b20388ca78e26201e16 (diff)
chore: add a Header component
Diffstat (limited to 'src/components/organisms/layout/header.test.tsx')
-rw-r--r--src/components/organisms/layout/header.test.tsx27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/components/organisms/layout/header.test.tsx b/src/components/organisms/layout/header.test.tsx
new file mode 100644
index 0000000..05baaec
--- /dev/null
+++ b/src/components/organisms/layout/header.test.tsx
@@ -0,0 +1,27 @@
+import { render, screen } from '@test-utils';
+import Header from './header';
+
+const nav = [
+ { id: 'home-link', href: '#', label: 'Home' },
+ { id: 'blog-link', href: '#', label: 'Blog' },
+ { id: 'cv-link', href: '#', label: 'CV' },
+ { id: 'contact-link', href: '#', label: 'Contact' },
+];
+
+const photo = 'http://placeimg.com/640/480/nightlife';
+
+const title = 'Assumenda quis quod';
+
+describe('Header', () => {
+ it('renders the website title', () => {
+ render(<Header title={title} photo={photo} nav={nav} isHome={true} />);
+ expect(
+ screen.getByRole('heading', { level: 1, name: title })
+ ).toBeInTheDocument();
+ });
+
+ it('renders the main nav', () => {
+ render(<Header title={title} photo={photo} nav={nav} />);
+ expect(screen.getByRole('navigation')).toBeInTheDocument();
+ });
+});