mirror of
https://github.com/ansible/awx.git
synced 2026-02-20 12:40:06 -03:30
16 lines
362 B
JavaScript
16 lines
362 B
JavaScript
import React from 'react';
|
|
import { mountWithContexts } from '../../../../enzymeHelpers';
|
|
import JobOutput from '../../../../../src/pages/Jobs/JobOutput';
|
|
|
|
describe('<JobOutput />', () => {
|
|
const mockDetails = {
|
|
name: 'Foo'
|
|
};
|
|
|
|
test('initially renders succesfully', () => {
|
|
mountWithContexts(
|
|
<JobOutput job={mockDetails} />
|
|
);
|
|
});
|
|
});
|