mirror of
https://github.com/ansible/awx.git
synced 2026-01-15 11:50:42 -03:30
12 lines
236 B
JavaScript
12 lines
236 B
JavaScript
import React from 'react';
|
|
|
|
import { mountWithContexts } from '@testUtils/enzymeHelpers';
|
|
|
|
import Job from './Jobs';
|
|
|
|
describe('<Job />', () => {
|
|
test('initially renders succesfully', () => {
|
|
mountWithContexts(<Job />);
|
|
});
|
|
});
|