diff options
Diffstat (limited to 'src/components/molecules/buttons/help-button.test.tsx')
| -rw-r--r-- | src/components/molecules/buttons/help-button.test.tsx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/components/molecules/buttons/help-button.test.tsx b/src/components/molecules/buttons/help-button.test.tsx new file mode 100644 index 0000000..78987ef --- /dev/null +++ b/src/components/molecules/buttons/help-button.test.tsx @@ -0,0 +1,9 @@ +import { render, screen } from '@test-utils'; +import HelpButton from './help-button'; + +describe('Help', () => { + it('renders a help button', () => { + render(<HelpButton />); + expect(screen.getByRole('button', { name: 'Help ?' })).toBeInTheDocument(); + }); +}); |
