fix test names

This commit is contained in:
Elizabeth Craig
2019-02-28 09:15:00 -08:00
parent 4d89fd7380
commit 703a366343
2 changed files with 2 additions and 2 deletions

View File

@@ -2,7 +2,7 @@ import React from 'react';
import { mount } from 'enzyme';
import { TestMe } from './TestMe';
describe('index', () => {
describe('TestMe Component', () => {
it('should have a non-clickable component when the original InnerMe is clicked', () => {
const wrapper = mount(<TestMe name="world" />);
wrapper.find('#innerMe').simulate('click');

View File

@@ -1,7 +1,7 @@
import React from 'react';
import { mount } from 'enzyme';
describe('TestMe Component', () => {
describe('index', () => {
it('placeholder', () => {
});
});