import React from 'react'; import { shallow } from 'enzyme'; import AddBookmark from './'; describe('AddBookmark', () => { it('should render correctly', () => { const wrapper = shallow( null }} route={{ params: {} }} />, ); expect(wrapper).toMatchSnapshot(); }); });