import React from 'react'; import { mount } from 'enzyme'; import Tooltip from '../../src/components/Tooltip'; describe('', () => { let wrapper; test('initially renders without crashing', () => { wrapper = mount(); expect(wrapper.length).toBe(1); }); });