import React from 'react'; import { mount } from 'enzyme'; import { TestMe } from './TestMe'; describe('TestMe Component', () => { it('should have a non-clickable component when the origina InnerMe is clicked', () => { const wrapper = mount(); wrapper.find('#innerMe').simulate('click'); expect(wrapper.find('#innerMe').text()).toBe('Clicked'); }); });