import React from 'react'; import { shallow } from 'enzyme'; import BaseText, { BaseTextVariant } from './'; describe('BaseText', () => { it('should render correctly', () => { const wrapper = shallow( {`I'm Text!`}, ); expect(wrapper).toMatchSnapshot(); }); });