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

describe('SettingsModal', () => {
  it('renders a fake heading', () => {
    render(
      <SettingsModal
        ackeeStorageKey="ackee-tracking"
        motionStorageKey="reduce-motion"
      />
    );
    expect(screen.getByText(/Settings/i)).toBeInTheDocument();
  });
});