Reorganize file locations/directory structure (#270)

Reorganize file locations
This commit is contained in:
Michael Abashian
2019-06-19 11:41:14 -04:00
committed by GitHub
parent e3cb8d0447
commit ee56e9ccfb
229 changed files with 478 additions and 317 deletions

View 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);
});
});