/* eslint-disable react/jsx-no-bind */ import React from 'react'; import { shallow } from 'enzyme'; import BrowserBottomBar from './'; describe('BrowserBottomBar', () => { it('should render correctly', () => { const fn = () => null; const wrapper = shallow( , ); expect(wrapper).toMatchSnapshot(); }); });