mirror of
https://github.com/ansible/awx.git
synced 2026-02-18 11:40:05 -03:30
12 lines
301 B
JavaScript
12 lines
301 B
JavaScript
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
import OrganizationEdit from '../../../../src/pages/Organizations/components/OrganizationEdit';
|
|
|
|
xdescribe('<OrganizationEdit />', () => {
|
|
test('initially renders succesfully', () => {
|
|
mount(
|
|
<OrganizationEdit />
|
|
);
|
|
});
|
|
});
|