awx/src/screens/Job/Job.test.jsx
2019-06-19 11:45:57 -04:00

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