aboutsummaryrefslogtreecommitdiffstats
path: root/__tests__/jest
diff options
context:
space:
mode:
Diffstat (limited to '__tests__/jest')
-rw-r--r--__tests__/jest/components/Branding.test.tsx24
-rw-r--r--__tests__/jest/components/Copyright.test.tsx13
-rw-r--r--__tests__/jest/components/Header.test.tsx12
3 files changed, 0 insertions, 49 deletions
diff --git a/__tests__/jest/components/Branding.test.tsx b/__tests__/jest/components/Branding.test.tsx
deleted file mode 100644
index 14266be..0000000
--- a/__tests__/jest/components/Branding.test.tsx
+++ /dev/null
@@ -1,24 +0,0 @@
-import Branding from '@components/Branding/Branding';
-import { render, screen } from '@test-utils';
-
-describe('Branding', () => {
- it('renders the title wrapped with an h1 element on homepage', () => {
- render(<Branding isHome={true} />);
- expect(
- screen.getByRole('heading', { level: 1, name: 'Armand Philippot' })
- ).toBeInTheDocument();
- });
-
- it('renders the title wrapped without an h1 element on other pages', () => {
- render(<Branding isHome={false} />);
- expect(
- screen.queryByRole('heading', { level: 1, name: 'Armand Philippot' })
- ).not.toBeInTheDocument();
- });
-
- it('renders the baseline', () => {
- render(<Branding isHome={false} />);
- // Currently, only French translation is returned.
- expect(screen.getByText('Intégrateur web')).toBeInTheDocument();
- });
-});
diff --git a/__tests__/jest/components/Copyright.test.tsx b/__tests__/jest/components/Copyright.test.tsx
deleted file mode 100644
index 08beb50..0000000
--- a/__tests__/jest/components/Copyright.test.tsx
+++ /dev/null
@@ -1,13 +0,0 @@
-import Copyright from '@components/Copyright/Copyright';
-import { render, screen } from '@test-utils';
-
-describe('Copyright', () => {
- it('renders the Copyright component', () => {
- render(<Copyright />);
- });
-
- it('displays author name', () => {
- render(<Copyright />);
- expect(screen.getByText('Armand Philippot')).toBeInTheDocument();
- });
-});
diff --git a/__tests__/jest/components/Header.test.tsx b/__tests__/jest/components/Header.test.tsx
deleted file mode 100644
index 44c6871..0000000
--- a/__tests__/jest/components/Header.test.tsx
+++ /dev/null
@@ -1,12 +0,0 @@
-import Header from '@components/Header/Header';
-import { render } from '@test-utils';
-
-// Toolbar uses forwardRef. Without mocking an error occurred.
-jest.mock('@components/Toolbar/Toolbar', () => 'div');
-
-describe('Header', () => {
- it('renders the Header component', () => {
- const { container } = render(<Header isHome={false} />);
- expect(container).toBeTruthy();
- });
-});