mirror of
https://github.com/ansible/awx.git
synced 2024-11-01 16:51:11 +03:00
12 lines
315 B
React
12 lines
315 B
React
|
import React from 'react';
|
||
|
import { mount } from 'enzyme';
|
||
|
|
||
|
import VerticalSeparator from '../../src/components/VerticalSeparator';
|
||
|
|
||
|
describe('VerticalSeparator', () => {
|
||
|
test('renders the expected content', () => {
|
||
|
const wrapper = mount(<VerticalSeparator />);
|
||
|
expect(wrapper).toHaveLength(1);
|
||
|
});
|
||
|
});
|