From 7e16f500cb7bc0cfd8bafbf6bb1555704f771231 Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Fri, 29 Apr 2022 12:13:34 +0200 Subject: chore: remove old pages, components, helpers and types Since I'm using new components, I will also rewrite the GraphQL queries so it is easier to start from scratch. --- __tests__/jest/components/Branding.test.tsx | 24 ------------------------ __tests__/jest/components/Copyright.test.tsx | 13 ------------- __tests__/jest/components/Header.test.tsx | 12 ------------ 3 files changed, 49 deletions(-) delete mode 100644 __tests__/jest/components/Branding.test.tsx delete mode 100644 __tests__/jest/components/Copyright.test.tsx delete mode 100644 __tests__/jest/components/Header.test.tsx (limited to '__tests__/jest/components') 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(); - expect( - screen.getByRole('heading', { level: 1, name: 'Armand Philippot' }) - ).toBeInTheDocument(); - }); - - it('renders the title wrapped without an h1 element on other pages', () => { - render(); - expect( - screen.queryByRole('heading', { level: 1, name: 'Armand Philippot' }) - ).not.toBeInTheDocument(); - }); - - it('renders the baseline', () => { - render(); - // 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(); - }); - - it('displays author name', () => { - render(); - 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(
); - expect(container).toBeTruthy(); - }); -}); -- cgit v1.2.3