mirror of
https://github.com/ansible/awx.git
synced 2024-11-01 08:21:15 +03:00
12 lines
315 B
JavaScript
12 lines
315 B
JavaScript
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);
|
|
});
|
|
});
|