aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/molecules/buttons/help-button.test.tsx
blob: 486ed4b4fd8fdfc9ca93362370b86f796e158384 (plain)
1
2
3
4
5
6
7
8
9
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();
  });
});