mirror of
https://github.com/ansible/awx.git
synced 2026-02-24 06:26:00 -03:30
22 lines
420 B
JavaScript
22 lines
420 B
JavaScript
import React from 'react';
|
|
|
|
import { mountWithContexts } from '@testUtils/enzymeHelpers';
|
|
|
|
import Templates from './Templates';
|
|
|
|
describe('<Templates />', () => {
|
|
let pageWrapper;
|
|
|
|
beforeEach(() => {
|
|
pageWrapper = mountWithContexts(<Templates />);
|
|
});
|
|
|
|
afterEach(() => {
|
|
pageWrapper.unmount();
|
|
});
|
|
|
|
test('initially renders without crashing', () => {
|
|
expect(pageWrapper.length).toBe(1);
|
|
});
|
|
});
|