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