mirror of
https://github.com/ansible/awx.git
synced 2026-03-03 09:48:51 -03:30
12 lines
297 B
JavaScript
12 lines
297 B
JavaScript
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
import OrganizationView from '../../../../src/pages/Organizations/views/Organization.view';
|
|
|
|
xdescribe('<OrganizationView />', () => {
|
|
test('initially renders succesfully', () => {
|
|
mount(
|
|
<OrganizationView />
|
|
);
|
|
});
|
|
});
|