import PrivacySettingsLink from './PrivacySettingsLink';
import { render } from '@testing-library/react';
describe('PrivacySettingsLink', function () {
it('should render with default options', () => {
const { container } = render();
expect(container).toMatchSnapshot();
});
it('should render with custom class and children', () => {
const { container } = render(
Custom modal trigger
);
expect(container).toMatchSnapshot();
});
});