aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/molecules/buttons/help-button.test.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/components/molecules/buttons/help-button.test.tsx')
-rw-r--r--src/components/molecules/buttons/help-button.test.tsx10
1 files changed, 0 insertions, 10 deletions
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(<HelpButton />);
- expect(screen.getByRole('button', { name: 'Help ?' })).toBeInTheDocument();
- });
-});