Files
awx/__tests__/pages/Jobs/screens/Job/Job.test.jsx
2019-06-14 14:46:48 -04:00

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 />);
});
});