mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-17 05:21:49 -05:00
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 />
|
|
);
|
|
});
|
|
});
|