import React from 'react'; import renderer from 'react-test-renderer'; import Integration from './index'; describe('Integration', () => { test('it renders correctly', () => { const component = renderer.create( , ); const tree = component.toJSON(); expect(tree).toMatchSnapshot(); }); });