mirror of
https://github.com/ansible/awx.git
synced 2026-03-16 00:17:29 -02:30
12 lines
293 B
JavaScript
12 lines
293 B
JavaScript
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
import OrganizationAdd from '../../../../src/pages/Organizations/views/Organization.add';
|
|
|
|
xdescribe('<OrganizationAdd />', () => {
|
|
test('initially renders succesfully', () => {
|
|
mount(
|
|
<OrganizationAdd />
|
|
);
|
|
});
|
|
});
|