From e97325a2c174a87c29593d1b42b9a1cc1eaf11af Mon Sep 17 00:00:00 2001 From: Armand Philippot Date: Wed, 4 Oct 2023 15:06:29 +0200 Subject: refactor(components): rewrite HelpButton component --- src/components/molecules/buttons/help-button.test.tsx | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 src/components/molecules/buttons/help-button.test.tsx (limited to 'src/components/molecules/buttons/help-button.test.tsx') diff --git a/src/components/molecules/buttons/help-button.test.tsx b/src/components/molecules/buttons/help-button.test.tsx deleted file mode 100644 index 85daf30..0000000 --- a/src/components/molecules/buttons/help-button.test.tsx +++ /dev/null @@ -1,10 +0,0 @@ -import { describe, expect, it } from '@jest/globals'; -import { render, screen } from '../../../../tests/utils'; -import { HelpButton } from './help-button'; - -describe('Help', () => { - it('renders a help button', () => { - render(); - expect(screen.getByRole('button', { name: 'Help ?' })).toBeInTheDocument(); - }); -}); -- cgit v1.2.3