mirror of
https://github.com/ZwareBear/awx.git
synced 2026-04-07 00:21:47 -05:00
12 lines
236 B
JavaScript
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 />);
|
|
});
|
|
});
|