mirror of
https://github.com/ansible/awx.git
synced 2026-02-16 10:40:01 -03:30
working test commit
This commit is contained in:
12
__tests__/components/Tooltip.test.jsx
Normal file
12
__tests__/components/Tooltip.test.jsx
Normal 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);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user