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