working test commit

This commit is contained in:
John Mitchell
2018-12-04 14:46:18 -05:00
parent aab6aa4ef9
commit 3a8d95b03b
10 changed files with 96 additions and 42 deletions

View File

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