working commit tests

This commit is contained in:
John Mitchell
2018-11-30 10:19:24 -05:00
parent 12c8267b12
commit aab6aa4ef9
14 changed files with 108 additions and 149 deletions

View File

@@ -0,0 +1,11 @@
import React from 'react';
import { mount } from 'enzyme';
import OrganizationEdit from '../../../../src/pages/Organizations/components/OrganizationEdit';
xdescribe('<OrganizationEdit />', () => {
test('initially renders succesfully', () => {
mount(
<OrganizationEdit />
);
});
});