mirror of
https://github.com/ansible/awx.git
synced 2026-03-23 11:55:04 -02:30
11 lines
263 B
JavaScript
11 lines
263 B
JavaScript
import React from 'react';
|
|
import { mountWithContexts } from '../../../../enzymeHelpers';
|
|
import Job from '../../../../../src/pages/Jobs/Job';
|
|
|
|
|
|
describe('<Job />', () => {
|
|
test('initially renders succesfully', () => {
|
|
mountWithContexts(<Job />);
|
|
});
|
|
});
|