mirror of
https://github.com/ansible/awx.git
synced 2026-05-12 20:07:37 -02:30
Reorganize file locations/directory structure (#270)
Reorganize file locations
This commit is contained in:
19
src/screens/Template/Templates.test.jsx
Normal file
19
src/screens/Template/Templates.test.jsx
Normal file
@@ -0,0 +1,19 @@
|
||||
import React from 'react';
|
||||
import Templates from './Templates';
|
||||
import { mountWithContexts } from '../../../testUtils/enzymeHelpers';
|
||||
|
||||
describe('<Templates />', () => {
|
||||
let pageWrapper;
|
||||
|
||||
beforeEach(() => {
|
||||
pageWrapper = mountWithContexts(<Templates />);
|
||||
});
|
||||
|
||||
afterEach(() => {
|
||||
pageWrapper.unmount();
|
||||
});
|
||||
|
||||
test('initially renders without crashing', () => {
|
||||
expect(pageWrapper.length).toBe(1);
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user