Fix lint errors and pull in new content error and loading handler

This commit is contained in:
Marliana Lara
2019-06-13 16:48:12 -04:00
parent 416d30a189
commit 096f5fb324
9 changed files with 85 additions and 105 deletions

View File

@@ -1,6 +1,6 @@
import React from 'react';
import { mountWithContexts } from '../../../../enzymeHelpers';
import JobOutput from '../../../../../src/pages/Jobs/JobOutput/';
import JobOutput from '../../../../../src/pages/Jobs/JobOutput';
describe('<JobOutput />', () => {
const mockDetails = {
@@ -9,7 +9,7 @@ describe('<JobOutput />', () => {
test('initially renders succesfully', () => {
mountWithContexts(
<JobOutput job={ mockDetails } />
<JobOutput job={mockDetails} />
);
});
});