mirror of
https://github.com/ZwareBear/awx.git
synced 2026-03-26 18:53:35 -05:00
13 lines
293 B
JavaScript
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);
|
|
});
|
|
});
|