mirror of
https://github.com/ansible/awx.git
synced 2026-02-26 15:36:04 -03:30
10 lines
332 B
JavaScript
10 lines
332 B
JavaScript
import React from 'react';
|
|
import { mountWithContexts } from '../../../../enzymeHelpers';
|
|
import Organization from '../../../../../src/pages/Organizations/screens/Organization/Organization';
|
|
|
|
describe('<OrganizationView />', () => {
|
|
test('initially renders succesfully', () => {
|
|
mountWithContexts(<Organization />);
|
|
});
|
|
});
|