mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-21 07:21:49 -05:00
12 lines
309 B
JavaScript
12 lines
309 B
JavaScript
import React from 'react';
|
|
import { mount } from 'enzyme';
|
|
import OrganizationDetail from '../../../../src/pages/Organizations/components/OrganizationDetail';
|
|
|
|
xdescribe('<OrganizationDetail />', () => {
|
|
test('initially renders succesfully', () => {
|
|
mount(
|
|
<OrganizationDetail />
|
|
);
|
|
});
|
|
});
|