awx/__tests__/components/Tooltip.test.jsx
2018-12-04 14:46:18 -05:00

13 lines
293 B
JavaScript

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);
});
});