Files
awx/__tests__/pages/Jobs/screens/Job/Job.test.jsx

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