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