mirror of
https://github.com/ansible/awx.git
synced 2026-01-20 22:18:01 -03:30
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);
|
|
});
|
|
});
|