import React from 'react'; import { mount } from 'enzyme'; import KsqlDb from 'components/KsqlDb/KsqlDb'; import { StaticRouter } from 'react-router'; describe('KsqlDb Component', () => { const pathname = `ui/clusters/local/ksql-db`; describe('KsqlDb', () => { const setupComponent = () => ( ); it('matches snapshot', () => { expect(mount(setupComponent())).toMatchSnapshot(); }); }); });