mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-26 18:01:47 -05:00
10 lines
262 B
JavaScript
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 />);
|
|
});
|
|
});
|