aboutsummaryrefslogtreecommitdiffstats
path: root/src/components/organisms/modals/settings-modal.test.tsx
blob: acbf7d1079bb32bd21ba86787a17d09d7c5ba813 (plain)
1
2
3
4
5
6
7
8
9
import { render, screen } from '@test-utils';
import SettingsModal from './settings-modal';

describe('SettingsModal', () => {
  it('renders a fake heading', () => {
    render(<SettingsModal />);
    expect(screen.getByText(/Settings/i)).toBeInTheDocument();
  });
});