import React from 'react'; import { shallow } from 'enzyme'; import TabBarItem from './TabBarItem'; import { IconName } from '../Icon'; describe('TabBarItem', () => { it('should render correctly', () => { const wrapper = shallow( , ); expect(wrapper).toMatchSnapshot(); }); });