From 49809fd7a69fc1f71a2b998b2e2f98f0b948d3da Mon Sep 17 00:00:00 2001 From: Fredrik Monsen Date: Fri, 13 Sep 2024 15:14:02 +0200 Subject: [PATCH] Remove test that is no longer valid --- __tests__/components/Header.test.tsx | 4 ---- 1 file changed, 4 deletions(-) diff --git a/__tests__/components/Header.test.tsx b/__tests__/components/Header.test.tsx index a0e5848..3369426 100644 --- a/__tests__/components/Header.test.tsx +++ b/__tests__/components/Header.test.tsx @@ -12,10 +12,6 @@ test('Header should have logo and Hugin-text', () => { expect(screen.getByRole('img')).toBeTruthy(); }); -test('Header should have login button', () => { - expect(screen.getByText('Logg inn')).toBeTruthy(); -}); - test('Header should not as default not show search bar', () => { expect(screen.queryByRole('searchbox')).toBeFalsy(); });