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 ------------------------ 1 file changed, 24 deletions(-) delete mode 100644 __tests__/jest/components/Branding.test.tsx (limited to '__tests__/jest/components/Branding.test.tsx') 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(); - }); -}); -- cgit v1.2.3