import { create } from 'react-test-renderer';
import ButtonSocial from './ButtonSocial';
describe('ButtonSocial', () => {
test('Renders email service', () => {
const tree = create().toJSON();
expect(tree).toMatchSnapshot();
});
test('Renders apple service with login', () => {
const tree = create().toJSON();
expect(tree).toMatchSnapshot();
});
});